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