Files
NGECore2/scripts/commands/groupdance.py
T
2013-12-08 17:25:04 +01:00

12 lines
258 B
Python

import sys
def setup():
return
def run(core, actor, target, commandString):
newState = actor.toggleGroupDance()
msg = '@performance:dance_group_on' if newState else '@performance:dance_group_off'
actor.sendSystemMessage(msg, 0)
return