diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-02 19:12:40 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-02 20:10:03 -0700 |
commit | c5e76820b1605d85faf6b635dd1f9e3ce5e811ce (patch) | |
tree | 052db8a105c3046e772bbe7e5dbce5e81579e183 /npc/001-1/sandra.txt | |
parent | bc2c0112d83edf1d64b3d5db90ee94c72134160f (diff) | |
download | serverdata-c5e76820b1605d85faf6b635dd1f9e3ce5e811ce.tar.gz serverdata-c5e76820b1605d85faf6b635dd1f9e3ce5e811ce.tar.bz2 serverdata-c5e76820b1605d85faf6b635dd1f9e3ce5e811ce.tar.xz serverdata-c5e76820b1605d85faf6b635dd1f9e3ce5e811ce.zip |
Remove brackets around item names
Diffstat (limited to 'npc/001-1/sandra.txt')
-rw-r--r-- | npc/001-1/sandra.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/001-1/sandra.txt b/npc/001-1/sandra.txt index 45b91ab3..dcef65c9 100644 --- a/npc/001-1/sandra.txt +++ b/npc/001-1/sandra.txt @@ -31,7 +31,7 @@ L_Opening1: L_Opening2: mes "[Sandra]"; - mes "\"The [Scorpion Stinger] carries many properties used in potions. Would you get some for me?\""; + mes "\"The Scorpion Stinger carries many properties used in potions. Would you get some for me?\""; next; goto L_Ask; @@ -54,19 +54,19 @@ L_Yes: L_Req0: mes "[Sandra]"; - mes "\"I need 5 [Scorpion Stinger]s.\""; + mes "\"I need 5 Scorpion Stingers.\""; next; goto L_Set; L_Req1: mes "[Sandra]"; - mes "\"I heard a while ago that stingers from scorpions can be used for medical purposes. I need you to help me get 5 [Scorpion Stinger]s.\""; + mes "\"I heard a while ago that stingers from scorpions can be used for medical purposes. I need you to help me get 5 Scorpion Stingers.\""; next; goto L_Set; L_Req2: mes "[Sandra]"; - mes "\"Bring me 5 [Scorpion Stinger]s. I'll give you something if you do!\""; + mes "\"Bring me 5 Scorpion Stingers. I'll give you something if you do!\""; next; goto L_Set; @@ -79,7 +79,7 @@ L_Set: L_Progress: if (countitem("ScorpionStinger") < 5) goto L_NotEnough; mes "[Sandra]"; - mes "\"Excellent! You brought me 5 [Scorpion Stinger]s!\""; + mes "\"Excellent! You brought me 5 Scorpion Stingers!\""; getinventorylist; if (@inventorylist_count + (countitem("ScorpionStinger") == 5) - (countitem("Arrow") == 0) > 99) goto L_TooMany; delitem "ScorpionStinger", 5; @@ -90,7 +90,7 @@ L_Progress: L_NotEnough: mes "[Sandra]"; - mes "\"Please hurry and bring me 5 [Scorpion Stinger]s.\""; + mes "\"Please hurry and bring me 5 Scorpion Stingers.\""; close; L_Done: |