mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-02 03:15:52 -04:00
(Bug Fix) Band Flourishes will now give experience (Added) Performance Commands (Code) Changed to ConcurrentHashMap for performance tables
14 lines
402 B
Python
14 lines
402 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
|
|
if actor.getLevel() < 90:
|
|
actor.sendSystemMessage('@performance:effect_lack_skill_self')
|
|
return
|
|
|
|
if core.entertainmentService.performEffect(actor, 'FeaturedSolo', 'clienteffect/entertainer_featured_solo.cef', target) is True:
|
|
actor.sendSystemMessage('@performance:effect_perform_featured_solo', 0)
|
|
return |