diff options
author | toni <toni@toni-EP45-UD3L.(none)> | 2011-04-03 14:51:56 -0300 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-04-04 19:26:42 +0200 |
commit | 027ee71cb7cdfeb2834cb8c66b66bd4869b0a556 (patch) | |
tree | 44a8953463281350632d5f12366ee5b18950ad50 /npc/027-2_Caretakers_House | |
parent | 3caccb6733bc522932c8abdd5eb8324827035b7d (diff) | |
download | serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.tar.gz serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.tar.bz2 serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.tar.xz serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.zip |
Fixing strange bug when using "npcName" as a name for a temporary variable
Diffstat (limited to 'npc/027-2_Caretakers_House')
-rwxr-xr-x | npc/027-2_Caretakers_House/gy_inn_shops.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/027-2_Caretakers_House/gy_inn_shops.txt b/npc/027-2_Caretakers_House/gy_inn_shops.txt index 5b0d2d1f..1936bd59 100755 --- a/npc/027-2_Caretakers_House/gy_inn_shops.txt +++ b/npc/027-2_Caretakers_House/gy_inn_shops.txt @@ -15,10 +15,10 @@ // Inn 027-2.gat,107,39,0 script Barbara Grey 320,{ - set @npcName$, "Barbara Grey"; + set @npcname$, "Barbara Grey"; set @cost, 1000; - mes "[" + @npcName$ + "]"; + mes "[" + @npcname$ + "]"; mes "\"Don't be shy darling."; mes "\"Come on in and have a nice long ... long slumber ..."; next; @@ -28,7 +28,7 @@ // Bank and Storage 027-2.gat,88,22,0 script J.P. Morbid 321,{ callfunc "ClearVariables"; - set @npcName$, "J.P. Morbid"; + set @npcname$, "J.P. Morbid"; callfunc "Banker"; close; } |