Files
NGECore2/scripts/commands/activatequest.py
Waverunner ffbe209207 Added handling of retrieve item quests, Added handling of giving quest rewards
Note: All changes may not be listed! Please view changes to get a better
idea, lots of changes compared to what I had before!
Changed ShowLootBox to use object id's instead of SWGObject
Added "A Speeder For Me" quest
Fixed quests so they advance to the next step properly and complete
properly
2014-08-15 11:34:58 -04:00

14 lines
464 B
Python

import sys
def setup():
return
def run(core, actor, target, commandString):
if core.questService.adminActivateQuest(actor, commandString) is False:
actor.sendSystemMessage(' \\#FE2EF7 [GM] \\#FFFFFF activateQuest: Error. You have specified an invalid quest.', 0)
return
#core.questService.sendQuestWindow(actor, commandString)
actor.sendSystemMessage(' \\#FE2EF7 [GM] \\#FFFFFF activateQuest: Command completed successfully.', 0)
return