diff options
author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2011-11-14 20:38:50 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-11-16 08:48:33 +0100 |
commit | 0f44cd07642a74953e5b03a10a1593c5d839c7a2 (patch) | |
tree | 55914d384ed76b2c3c1353ed437ab70ad6e1273e /world/map/npc/010-2 | |
parent | 09b92ddc891de4c0ffbffa0ae58d7ea142057874 (diff) | |
download | serverdata-0f44cd07642a74953e5b03a10a1593c5d839c7a2.tar.gz serverdata-0f44cd07642a74953e5b03a10a1593c5d839c7a2.tar.bz2 serverdata-0f44cd07642a74953e5b03a10a1593c5d839c7a2.tar.xz serverdata-0f44cd07642a74953e5b03a10a1593c5d839c7a2.zip |
Removed direct occurrences of itemids
Diffstat (limited to 'world/map/npc/010-2')
-rw-r--r-- | world/map/npc/010-2/loratay.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/world/map/npc/010-2/loratay.txt b/world/map/npc/010-2/loratay.txt index 4fab8dd4..fd268230 100644 --- a/world/map/npc/010-2/loratay.txt +++ b/world/map/npc/010-2/loratay.txt @@ -33,7 +33,7 @@ L_intro_over: if (QUEST_WG_state >= 1) set @agostine_msg0$, "Do you know Agostine?"; - if ((QUEST_WG_state >= 9) && (countitem(655))) + if ((QUEST_WG_state >= 9) && (countitem("FurBoots"))) set @agostine_msg1$, "Can you make fur boots, like Agostine?"; menu @@ -96,7 +96,7 @@ L_agostine_menu: mes "The seamstress looks up at you from her work."; mes "\"I do hope that you have not had any more dealings with this... this lumberjack of a tailor?\""; next; - if (countitem(563) > 0) + if (countitem("WinterGloves") > 0) menu "You mean Agostine?", L_agostine_3, "Actually, he also made me gloves...", L_agostine_2, @@ -108,7 +108,7 @@ L_agostine_menu: "No, none, really.", L_agostine_5; L_agostine_2: - if ((QUEST_WG_state < 9) || (countitem(563) == 0)) + if ((QUEST_WG_state < 9) || (countitem("WinterGloves") == 0)) close; mes "[Lora Tay the Seamstress]"; mes "Lora inspects your gloves, shock apparent on her face."; @@ -136,13 +136,13 @@ L_agostine_2: mes "\"*cough* ... can't possibly... *cough*...\""; mes "Lora sinks back on her chair, trying to control her cough."; next; - if (countitem(541)) + if (countitem("BottleOfWater")) menu "(sneak out of the room)", L_end, "Are you alright?", -, "Here, have a bottle of water...", L_give_water, "Can I help you?", -; - if (countitem(541) == 0) + if (countitem("BottleOfWater") == 0) menu "(sneak out of the room)", L_end, "Are you alright?", -, @@ -180,9 +180,9 @@ L_regular_intro: goto L_main_menu; L_give_water: - if (countitem(541) == 0) + if (countitem("BottleOfWater") == 0) goto L_no_water; - delitem 541, 1; + delitem "BottleOfWater", 1; set QUEST_WG_state, 11; set @xpval, 50000; |