mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-01 02:16:15 -04:00
10 lines
314 B
Python
10 lines
314 B
Python
from main import NGECore
|
|
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
room = core.chatService.getChatRoomByAddress('SWG.' + NGECore.getInstance().getGalaxyName() + '.' + 'Auction')
|
|
core.chatService.sendChatRoomMessage(actor, room.getRoomId(), 0, commandString)
|
|
return |