mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-21 06:13:13 -04:00
11 lines
192 B
Python
11 lines
192 B
Python
def setup(core):
|
|
return
|
|
|
|
def wait(core, actor):
|
|
print ('waiting')
|
|
return
|
|
|
|
def activate(core, actor, quest):
|
|
print ('Activate!!')
|
|
core.questService.completeActiveTask(actor, quest)
|
|
return |