summaryrefslogtreecommitdiff
path: root/world/map/npc/029-1/tutorial.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
committerJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
commit9877fd4ad81120af8e63e96d5d429092014dc017 (patch)
treeec045a0535109a2e0d82e0e8155eb01ed9776452 /world/map/npc/029-1/tutorial.txt
parentaedbeb335a5ec5f55d22eace389076a18241ac9a (diff)
downloadserverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.gz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.bz2
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.xz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.zip
Remove all Legacy files
Diffstat (limited to 'world/map/npc/029-1/tutorial.txt')
-rw-r--r--world/map/npc/029-1/tutorial.txt58
1 files changed, 0 insertions, 58 deletions
diff --git a/world/map/npc/029-1/tutorial.txt b/world/map/npc/029-1/tutorial.txt
deleted file mode 100644
index e6f31c4a..00000000
--- a/world/map/npc/029-1/tutorial.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-// This file is part of the Tutorial
-// Author: Jenalya
-// if you enter the tutorial area from outside, it is set to be already done
--|script|#TutorialConfig|32767
-{
- end;
-
-OnInit:
- set $@ScorpionFighter, 0;
- set $@ScorpionTimer, 0;
- set $@ScorpDeath, 0;
- set $@SpokeToKaan, (1 << 31);
- end;
-}
-029-2,21,26,0|script|TutDebug|154
-{
- mes "[TutDebug]";
- mes "Reset?";
- menu
- "Reset Kaan/Hasan",L_Kaan,
- "Yes.",L_Reset,
- "No.",L_Close;
-
-L_Kaan:
- set QL_BEGIN, 8;
- set STARTAREA, STARTAREA &~ $@SpokeToKaan;
- mes "Reset!";
- goto L_Close;
-
-L_Reset:
- set TUT_var, 0;
- set QL_BEGIN, 0;
- set STARTAREA, STARTAREA &~ $@SpokeToKaan;
- mes "Reset!";
- goto L_Close;
-
-L_Close:
- close;
-
-OnInit:
- if(!debug)
- disablenpc "TutDebug";
- end;
-}
-029-1,32,99,0|script|#tutorialoutside|45,0,0
-{
- if (QL_BEGIN >= 8)
- goto L_Warp;
- goto L_ResetTutorial;
-
-L_ResetTutorial:
- set QL_BEGIN, 8;
- goto L_Warp;
-
-L_Warp:
- warp "029-2", 114, 92;
- end;
-}