Files
NGECore2/scripts/commands/giveitem.py
T
2014-03-17 20:40:15 -04:00

24 lines
464 B
Python

import sys
def setup():
return
def run(core, actor, target, commandString):
if actor.getClient() and actor.getClient().isGM() == False:
return
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