Files
NGECore2/scripts/commands/giveitem.py
T
2014-03-30 14:18:48 -04:00

27 lines
609 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())
#object.setCustomizationVariable('/private/index_color_blade', 0x02)
#object.setCustomizationVariable('private/alternate_shader_blade', 0x02)
if not object:
return
inventory = actor.getSlottedObject('inventory')
if inventory:
inventory.add(object)
return