mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
17 lines
322 B
Python
17 lines
322 B
Python
import sys
|
|
from resources.datatables import Posture
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
|
|
if actor.getPosture() == Posture.Incapacitated or actor.getPosture() == Posture.Dead:
|
|
return
|
|
|
|
actor.setPosture(Posture.Crouched)
|
|
actor.setSpeedMultiplierBase(0)
|
|
actor.setTurnRadius(0)
|
|
|
|
return
|
|
|