mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
Changed guilds to be saved to a TreeMap instead of solely the SWGSet. Fixed uses string Added UnknownAbilityPacket (was sent for every new ability, doesnt seem to do anything) Lots of guild improvement/features added.
20 lines
307 B
Python
20 lines
307 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
|
|
if actor.getGuildId() == 0:
|
|
return
|
|
|
|
guildSvc = core.guildService
|
|
|
|
guild = guildSvc.getGuildById(actor.getGuildId())
|
|
|
|
if guild is None:
|
|
return
|
|
|
|
guildSvc.showGuildInfoWindow(actor, guild)
|
|
return
|