Files
NGECore2/scripts/commands/getfriendlist.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

11 lines
312 B
Python

from protocol.swg import ChatOnGetFriendsList
import sys
def setup():
return
def run(core, actor, target, commandString):
ghost = actor.getSlottedObject('ghost')
friendsListMessage = ChatOnGetFriendsList(ghost)
actor.getClient().getSession().write(friendsListMessage.serialize())
return