mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
14 lines
399 B
Python
14 lines
399 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
|
|
if actor.getLevel() < 82:
|
|
actor.sendSystemMessage('@performance:effect_lack_skill_self', 0)
|
|
return
|
|
|
|
if core.entertainmentService.performEffect(actor, 'DanceFloor', 'clienteffect/entertainer_dance_floor.cef', target) is True:
|
|
actor.sendSystemMessage('@performance:effect_perform_dance_floor', 0)
|
|
return |