mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
16 lines
237 B
Python
16 lines
237 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
|
|
if actor.getStateBitmask() == 32768:
|
|
actor.setStateBitmask(0)
|
|
|
|
actor.setPosture(0)
|
|
actor.setSpeedMultiplierBase(1)
|
|
actor.setTurnRadius(1)
|
|
|
|
return
|
|
|