diff options
Diffstat (limited to 'npc/quests/quests_geffen.txt')
-rw-r--r-- | npc/quests/quests_geffen.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/quests/quests_geffen.txt b/npc/quests/quests_geffen.txt index 34edd26f2..76fadab8c 100644 --- a/npc/quests/quests_geffen.txt +++ b/npc/quests/quests_geffen.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88 & Samuray22 //===== Current Version: ===================================== -//= 1.3 +//= 1.3a //===== Compatible With: ===================================== //= eAthena 7.15 + //===== Description: ========================================= @@ -12,6 +12,7 @@ //= 1.1 Fixed exploits [Lupus] //= 1.2 Removed Duplicates [Silent] //= 1.3 Updated "Welding Mask" Quest to the Official one. [Samuray22] +//= 1.3a replaced item "names" with item id. Added missing [] [Lupus] //============================================================ @@ -39,13 +40,13 @@ geffen_in,144,166,5 script Blacksmith 63,{ next; switch( select( "Not bad! I will take one.", "It doesn't seem useful.")) { case 1: - if (countitem("Steel") > 49 && Zeny > 1999) { - mes "Blacksmith"; + if (countitem(999) > 49 && Zeny > 1999) { + mes "[Blacksmith]"; mes "Great! I will do it right now!!"; next; - delitem "Steel", 50; + delitem 999, 50; set Zeny, Zeny-2000; - getitem "Welding_Mask", 1; + getitem 2292, 1; mes "[Blacksmith]"; mes "Now you can enjoy the heat!"; mes "Good bye..."; |