diff options
author | Wombat <hpwombat@yahoo.com> | 2010-09-01 02:35:28 -0400 |
---|---|---|
committer | Wombat <hpwombat@yahoo.com> | 2010-09-01 02:35:28 -0400 |
commit | 2f210da0bdb1236388d9cd50bb551ac28cdcc70c (patch) | |
tree | 57f9f5a2dc5df25192b8b2ff6bab06332f54e53c | |
parent | 787018240d3d9265ece197dae6e2a53ac5f905af (diff) | |
download | serverdata-2f210da0bdb1236388d9cd50bb551ac28cdcc70c.tar.gz serverdata-2f210da0bdb1236388d9cd50bb551ac28cdcc70c.tar.bz2 serverdata-2f210da0bdb1236388d9cd50bb551ac28cdcc70c.tar.xz serverdata-2f210da0bdb1236388d9cd50bb551ac28cdcc70c.zip |
instant equipment and level npc
instant equipment and level npc added to help ready testing
-rw-r--r-- | npc/001-1_Tulimshar/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1_Tulimshar/tester.txt | 32 |
2 files changed, 33 insertions, 0 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/tester.txt b/npc/001-1_Tulimshar/tester.txt new file mode 100644 index 00000000..76e1bca6 --- /dev/null +++ b/npc/001-1_Tulimshar/tester.txt @@ -0,0 +1,32 @@ +//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?\""; + 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.\""; + close; + +L_No: + mes "[Tester]"; + mes "\"Okay.\""; + close; + +} |