9 lines
344 B
Python
9 lines
344 B
Python
if startQuest:
|
|
sm.chat("Starting quest " + str(parentID) + " without checking requirements, as there was no script found.")
|
|
sm.startQuestNoCheck(parentID)
|
|
sm.dispose()
|
|
else:
|
|
sm.chat("Completing quest " + str(parentID) + " without rewards, as there was no script found.")
|
|
sm.completeQuestNoRewards(parentID)
|
|
sm.dispose()
|