Items - Profession restrictions

This commit is contained in:
Ziggeh
2013-12-24 00:23:17 +01:00
parent 9b87d4b91c
commit b26374faf7
4 changed files with 53 additions and 9 deletions
+3
View File
@@ -4,6 +4,9 @@ def setup():
return
def run(core, actor, target, commandString):
if core.equipmentService.canEquip(actor, target) is False:
return
parsedMsg = commandString.split(' ', 3)
objService = core.objectService
containerID = long(parsedMsg[1])
+3
View File
@@ -4,6 +4,9 @@ def setup():
return
def run(core, actor, target, commandString):
if core.equipmentService.canEquip(actor, target) is False:
return
parsedMsg = commandString.split(' ', 3)
objService = core.objectService
containerID = long(parsedMsg[1])
+3
View File
@@ -4,6 +4,9 @@ def setup():
return
def run(core, actor, target, commandString):
if core.equipmentService.canEquip(actor, target) is False:
return
parsedMsg = commandString.split(' ', 3)
objService = core.objectService
containerID = long(parsedMsg[1])