Files
NGECore2/scripts/commands/addfriend.py
T
Waverunner 7e7c454490 Most work on friends list finished
Need to be done: notifying when the checkbox is selected for certain
users, deltas (crashes right now), removing friends
2013-08-16 17:41:04 -04:00

10 lines
230 B
Python

import sys
def setup():
return
def run(core, actor, target, commandString):
actorGhost = actor.getSlottedObject("ghost")
chatSrvc = core.chatService
chatSrvc.addFriend(actorGhost, commandString, 1)
return