mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-15 00:07:39 -04:00
14 lines
366 B
Python
14 lines
366 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
core.buffService.addBuffToCreature(actor, 'of_focus_fire_2')
|
|
group = core.objectService.getObject(actor.getGroupId())
|
|
if group is not None:
|
|
for creature in group.getMemberList():
|
|
core.buffService.addBuffToCreature(creature, 'of_focus_fire_2')
|
|
return
|
|
return
|
|
|