mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
12 lines
258 B
Python
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
|