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/009-2/alan.txt | |
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/009-2/alan.txt')
-rw-r--r-- | world/map/npc/009-2/alan.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/009-2/alan.txt b/world/map/npc/009-2/alan.txt index 0e9da6fd..c08a7086 100644 --- a/world/map/npc/009-2/alan.txt +++ b/world/map/npc/009-2/alan.txt @@ -114,7 +114,7 @@ L_State_2: L_State_3: mes "[Alan]"; mes "\"How is the hunt going? Did you bring me any wood?\""; - if (countitem(569) < 1) close; + if (countitem("RawLog") < 1) close; next; if (Inspector == 1) menu @@ -128,7 +128,7 @@ L_State_3: close; L_State_3_try: - if (countitem(569) < 1) + if (countitem("RawLog") < 1) goto L_No_Log; delitem "RawLog", 1; mes "[Alan]"; @@ -142,7 +142,7 @@ L_State_3_try: next; mes "[Alan]"; mes "\"Sorry, this log was too weak for one of my forest bows. Now it is junk. Give me another.\""; - if (countitem(569) < 1) close; + if (countitem("RawLog") < 1) close; next; menu "Sure, here you go.", L_State_3_try, |