diff options
author | nmaligec <wouldnot@hotmail.com> | 2011-01-03 14:50:23 -0500 |
---|---|---|
committer | nmaligec <wouldnot@hotmail.com> | 2011-01-03 14:50:23 -0500 |
commit | 0362815db48dcd49b5df5d1bd8565613e1979f70 (patch) | |
tree | b6c9733c488c5f87387a500ac2ef25441fdc1538 /npc/001-1_Tulimshar | |
parent | 8b09943b83d9eeb2180fb6c50023a22d3ffae18d (diff) | |
download | serverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.tar.gz serverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.tar.bz2 serverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.tar.xz serverdata-0362815db48dcd49b5df5d1bd8565613e1979f70.zip |
Updates I made since ta-testing repo was closed: minor fix to Hurnsald warps and entrances, plus additions for the crypt quest.
Diffstat (limited to 'npc/001-1_Tulimshar')
-rw-r--r-- | npc/001-1_Tulimshar/_warps.txt | 1 | ||||
-rw-r--r-- | npc/001-1_Tulimshar/tester.txt | 43 |
2 files changed, 18 insertions, 26 deletions
diff --git a/npc/001-1_Tulimshar/_warps.txt b/npc/001-1_Tulimshar/_warps.txt index 5b6c9971..4e293337 100644 --- a/npc/001-1_Tulimshar/_warps.txt +++ b/npc/001-1_Tulimshar/_warps.txt @@ -5,4 +5,3 @@ 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.gat,27,71 warp ToInnTest -1,-1,027-2.gat,106,45
diff --git a/npc/001-1_Tulimshar/tester.txt b/npc/001-1_Tulimshar/tester.txt index 76e1bca6..56408b9b 100644 --- a/npc/001-1_Tulimshar/tester.txt +++ b/npc/001-1_Tulimshar/tester.txt @@ -1,32 +1,25 @@ //testing server instant level and item NPC -001-1.gat,25,30,0 script Tester 134,{ - - mes "[Tester]"; - mes "\"You are testing this server. Would you like level 90 and equipment to help test?\""; +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 - "Yes.", L_Yes, - "No.", L_No; - close; - -L_Yes: - set baselevel, 90; - getitem "WarlordHelmet", 1; - getitem "WarlordPlate", 1; - getitem "JeansChaps", 1; - getitem "LeatherGloves", 1; - getitem "FurBoots", 1; - getitem "SteelShield", 1; - getitem "Setzer", 1; - getitem "ForestBow", 1; - getitem "IronArrow", 2000; - mes "[Tester]"; - mes "\"Here you go! Enjoy your testing experience.\""; + "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_No: - mes "[Tester]"; - mes "\"Okay.\""; +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 |