mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
25 lines
No EOL
848 B
Python
25 lines
No EOL
848 B
Python
from toontown.safezone import Walk
|
|
|
|
class CogThiefWalk(Walk.Walk):
|
|
notify = directNotify.newCategory('CogThiefWalk')
|
|
|
|
def __init__(self, doneEvent):
|
|
Walk.Walk.__init__(self, doneEvent)
|
|
|
|
def enter(self, slowWalk = 0):
|
|
base.localAvatar.startPosHprBroadcast()
|
|
base.localAvatar.startBlink()
|
|
base.localAvatar.showName()
|
|
base.localAvatar.collisionsOn()
|
|
base.localAvatar.startGlitchKiller()
|
|
base.localAvatar.enableAvatarControls()
|
|
|
|
def exit(self):
|
|
self.fsm.request('off')
|
|
self.ignore('control')
|
|
base.localAvatar.disableAvatarControls()
|
|
base.localAvatar.stopPosHprBroadcast()
|
|
base.localAvatar.stopBlink()
|
|
base.localAvatar.stopGlitchKiller()
|
|
base.localAvatar.collisionsOff()
|
|
base.localAvatar.controlManager.placeOnFloor() |