mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-30 00:15:57 -04:00
32 lines
1.6 KiB
Python
32 lines
1.6 KiB
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
parsedMsg = commandString.split(' ', 3)
|
|
objService = core.objectService
|
|
containerID = long(parsedMsg[1])
|
|
container = objService.getObject(containerID)
|
|
if target and container and target.getContainer():
|
|
oldContainer = target.getContainer()
|
|
|
|
if container == oldContainer:
|
|
print 'Error: New container is same as old container.'
|
|
return;
|
|
|
|
oldContainer.transferTo(actor, container, target)
|
|
|
|
if actor == container:
|
|
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
|
path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
|
module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
|
core.scriptService.callScript(path, 'equip', module, core, actor, target)
|
|
|
|
if actor == oldContainer:
|
|
if target.getTemplate().find('/wearables/') or target.getTemplate().find('/weapon/'):
|
|
path = 'scripts/' + target.getTemplate().rpartition('/')[0] + '/'
|
|
module = target.getTemplate().rpartition('/')[2].replace('shared_', '').replace('.iff', '')
|
|
core.scriptService.callScript(path, 'unequip', module, core, actor, target)
|
|
|
|
return |