Files
NGECore2/scripts/commands/giveitem.py
T
2013-11-06 20:07:13 -05:00

21 lines
402 B
Python

import sys
def setup():
return
def run(core, actor, target, commandString):
if not commandString.startswith('object/tangible') and not commandString.startswith('object/weapon'):
return
object = core.objectService.createObject(commandString, actor.getPlanet())
if not object:
return
inventory = actor.getSlottedObject('inventory')
if inventory:
inventory.add(object)
return