mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
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
14 lines
464 B
Python
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
|