diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-05 08:34:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-05 08:34:13 -0300 |
commit | 9df305e37eacb1a4b5160044977121a2418d2de1 (patch) | |
tree | 812e616f3a342f0b3d11523628aa682e50f458eb /npc/000-0-0/sailors.txt | |
parent | 12c76b52c3027bf65983fae66bf12dee31afbb36 (diff) | |
download | serverdata-9df305e37eacb1a4b5160044977121a2418d2de1.tar.gz serverdata-9df305e37eacb1a4b5160044977121a2418d2de1.tar.bz2 serverdata-9df305e37eacb1a4b5160044977121a2418d2de1.tar.xz serverdata-9df305e37eacb1a4b5160044977121a2418d2de1.zip |
If you never did the tutorial before, and try to skip it, ask again.
Skiping tutorial DISABLES ALL TUTORIAL DIALOGS on every npc.
Diffstat (limited to 'npc/000-0-0/sailors.txt')
-rw-r--r-- | npc/000-0-0/sailors.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/000-0-0/sailors.txt b/npc/000-0-0/sailors.txt index 7a814f1e1..282ad0e19 100644 --- a/npc/000-0-0/sailors.txt +++ b/npc/000-0-0/sailors.txt @@ -30,12 +30,25 @@ L_Step0: l("Yes, I do."); if (@menu == 2) { + if (!#TUTORIAL_DONE) { + mesn l("Magic Arpan"); + mesq l("Yaya, are you sure?"); + next; + select + l("Yes, I am."), + l("Actually, a tutorial would be good!"); + mes ""; + if (@menu == 1) + goto L_Begin; + } 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; } + +L_Begin: TUTORIAL=true; savepoint "000-0-0", 30, 37; setq ShipQuests_Arpan, 1; @@ -241,6 +254,7 @@ L_Skip: equip(CreasedShorts); L_Ready: + #TUTORIAL_DONE=true; //clearitem(); // The dummy don't drop anything :> resetlvl(2); restorecam; |