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