mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
29 lines
1 KiB
Python
Executable file
29 lines
1 KiB
Python
Executable file
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
from direct.fsm.FSM import FSM
|
|
|
|
class DistributedWinterCarolingTargetAI(DistributedObjectAI, FSM):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedWinterCarolingTargetAI")
|
|
|
|
def __init__(self, air):
|
|
DistributedObjectAI.__init__(self, air)
|
|
FSM.__init__(self, 'WinterCarolingFSM')
|
|
self.air = air
|
|
|
|
def enterOff(self):
|
|
self.requestDelete()
|
|
|
|
def requestScavengerHunt(self):
|
|
avId = self.air.getAvatarIdFromSender()
|
|
av = self.air.doId2do.get(avId)
|
|
if av is None:
|
|
return
|
|
scavengerHunt = av.getScavengerHunt()
|
|
if self.zoneId in scavengerHunt:
|
|
self.sendUpdate('doScavengerHunt', [0])
|
|
else:
|
|
self.sendUpdate('doScavengerHunt', [100])
|
|
scavengerHunt.append(self.zoneId)
|
|
av.b_setScavengerHunt(scavengerHunt)
|
|
if len(scavengerHunt) == 6:
|
|
av.b_setCheesyEffect(14, 0, 0)
|