diff options
Diffstat (limited to 'npc/001-1_Tulimshar')
-rw-r--r-- | npc/001-1_Tulimshar/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1_Tulimshar/_warps.txt | 14 | ||||
-rw-r--r-- | npc/001-1_Tulimshar/tester.txt | 25 |
3 files changed, 33 insertions, 7 deletions
diff --git a/npc/001-1_Tulimshar/_import.txt b/npc/001-1_Tulimshar/_import.txt index b7ea36c1..ced4347d 100644 --- a/npc/001-1_Tulimshar/_import.txt +++ b/npc/001-1_Tulimshar/_import.txt @@ -21,5 +21,6 @@ npc: npc/001-1_Tulimshar/rewards_master.txt npc: npc/001-1_Tulimshar/sandra.txt npc: npc/001-1_Tulimshar/sarah.txt npc: npc/001-1_Tulimshar/soul-menhir.txt +npc: npc/001-1_Tulimshar/tester.txt npc: npc/001-1_Tulimshar/trader.txt npc: npc/001-1_Tulimshar/vincent.txt diff --git a/npc/001-1_Tulimshar/_warps.txt b/npc/001-1_Tulimshar/_warps.txt index e3778fff..4e293337 100644 --- a/npc/001-1_Tulimshar/_warps.txt +++ b/npc/001-1_Tulimshar/_warps.txt @@ -1,7 +1,7 @@ -// 001-1 Tulimshar warps - -001-1.gat,44,88 warp ToSandstorm 3,-1,002-1.gat,58,17 -001-1.gat,44,20 warp toCentralTulimshar 3,-1,021-1.gat,55,145 -001-1.gat,125,20 warp toCentralTulimshar 0,-1,021-1.gat,136,146 -001-1.gat,32,71 warp ToInn -1,-1,001-2.gat,25,34 -001-1.gat,75,41 warp ToHouse -1,-1,001-4.gat,26,33 +// 001-1 Tulimshar warps
+
+001-1.gat,44,88 warp ToSandstorm 3,-1,002-1.gat,58,17
+001-1.gat,44,20 warp toCentralTulimshar 3,-1,021-1.gat,55,145
+001-1.gat,125,20 warp toCentralTulimshar 0,-1,021-1.gat,136,146
+001-1.gat,32,71 warp ToInn -1,-1,001-2.gat,25,34
+001-1.gat,75,41 warp ToHouse -1,-1,001-4.gat,26,33
diff --git a/npc/001-1_Tulimshar/tester.txt b/npc/001-1_Tulimshar/tester.txt new file mode 100644 index 00000000..56408b9b --- /dev/null +++ b/npc/001-1_Tulimshar/tester.txt @@ -0,0 +1,25 @@ +//testing server instant level and item NPC + +001-1.gat,21,25,0 script Mr. Invisible#todebug 127,{ +L_Debug: + mes "[Mr. Invisible]"; + mes "\"Do you want to go to the debug room?\""; + menu + "Send me there right away!", L_Go, + "Debug room? What's that?", L_Explain, + "No way, I'm staying right here.", -; + mes "[Mr. Invisible]"; + mes "\"If you want to go later on just talk to me again.\""; + close; + +L_Go: + warp "debugroom.gat",25,25; + mes "Welcome to the dbug room. Help test everything!"; + close; + +L_Explain: + mes "[Mr. Invisible]"; + mes "\"Its a room full of de bugs.\""; + next; + goto L_Debug; +}
\ No newline at end of file |