diff options
-rw-r--r-- | npc/000-0-0/sailors.txt | 2 | ||||
-rw-r--r-- | npc/005-1/zegas.txt | 31 |
2 files changed, 33 insertions, 0 deletions
diff --git a/npc/000-0-0/sailors.txt b/npc/000-0-0/sailors.txt index ad3ffc676..e053175b2 100644 --- a/npc/000-0-0/sailors.txt +++ b/npc/000-0-0/sailors.txt @@ -28,11 +28,13 @@ L_Step0: l("Yes, I do."); if (@menu == 2) { + TUTORIAL=false; mesn l("Magic Arpan"); mesq l("Yeye don't need to train here anymore! Let's head back to the ship before the sun sets, shall we?"); next; goto L_Skip; } + TUTORIAL=true; savepoint "000-0-0", 30, 37; setq ShipQuests_Arpan, 1; diff --git a/npc/005-1/zegas.txt b/npc/005-1/zegas.txt index d3797269a..425bb4171 100644 --- a/npc/005-1/zegas.txt +++ b/npc/005-1/zegas.txt @@ -51,11 +51,42 @@ L_Start: mesn; mesq l("Thanks, come back and see me once you found the bug bomb and set it off."); setq CandorQuest_Barrel, 2; + if (TUTORIAL) { + next; + mesn; + mesc l("TUTORIAL: The bugs there can be pretty vicious. Do you know what's worse though? Lag."); + next; + mesn; + mesc l("TUTORIAL: By pressing @@, you can open the Shortcut menu. And by pressing @@, you open the skill menu!", b("F8"), b("F5")); + next; + mesn; + mesc l("TUTORIAL: If you drag the \"Resync\" skill from the skill list to the shortcut list, you'll be able to rapidly solve some lag issues!"); + next; + mesn; + mesc l("TUTORIAL: Of course, lag might always be a problem. Remember to drag healing items to the shortcut list too. %%2"); + } close; L_Looking: mesn; mesq l("Still haven't found it? Well, keep looking the barrels at this storehouse. I know it's in there, somewhere."); + if (TUTORIAL) { + mesc l("Read the tutorial again?"); + if (askyesno() == ASK_YES) { + next; + mesn; + mesc l("TUTORIAL: The bugs there can be pretty vicious. Do you know what's worse though? Lag."); + next; + mesn; + mesc l("TUTORIAL: By pressing @@, you can open the Shortcut menu. And by pressing @@, you open the skill menu!", b("F8"), b("F5")); + next; + mesn; + mesc l("TUTORIAL: If you drag the \"Resync\" skill from the skill list to the shortcut list, you'll be able to rapidly solve some lag issues!"); + next; + mesn; + mesc l("TUTORIAL: Of course, lag might always be a problem. Remember to drag healing items to the shortcut list too. %%2"); + } + } close; L_QuestEnd: |