Files
NGECore2/scripts/commands/setcurrentskilltitle.py
T
2013-12-14 20:02:49 -05:00

15 lines
362 B
Python

import sys
def setup():
return
def run(core, actor, target, commandString):
playerObject = actor.getSlottedObject('ghost')
#print ("Title set to: " + commandString)
#print ("List of Titles: " + playerObject.getTitleList().toString())
if playerObject is None:
return
playerObject.setTitle(str(commandString))
return