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