Poodletooth-iLand/toontown/minigame/CogThiefWalk.py
John 35b646c4e6 Revert "Spring cleaning"
This reverts commit 1e4bad8c6b.
2015-06-16 20:26:44 +03:00

25 lines
No EOL
848 B
Python
Executable file

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()