14 lines
587 B
Python
14 lines
587 B
Python
JOB_QUEST = 25112
|
|
if sm.hasQuest(JOB_QUEST) or not sm.hasQuestCompleted(JOB_QUEST):
|
|
sm.setPlayerAsSpeaker()
|
|
sm.removeEscapeButton()
|
|
sm.lockInGameUI(True)
|
|
sm.sendNext("Aria's portrait... I was wonderinf if I'd run into you.")
|
|
sm.sendNext("You always wore that silly little smile to make your advisors think everything was alright."
|
|
"You always were too concerned about everybody else... And now you give me the skill book I was looking for. What a dear.")
|
|
|
|
sm.lockInGameUI(False)
|
|
sm.setJob(2412)
|
|
sm.addSP(5)
|
|
sm.completeQuest(JOB_QUEST)
|