mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
19 lines
326 B
Python
19 lines
326 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
chatService = core.chatService
|
|
parsedMsg = commandString.split(' ', 3)
|
|
targetId = long(parsedMsg[0])
|
|
target = core.objectService.getObject(targetId)
|
|
emoteId = int(parsedMsg[1])
|
|
chatService.handleEmote(actor, target, emoteId)
|
|
|
|
return
|
|
|
|
|
|
|
|
|