diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:39:41 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:37 +0100 |
commit | 7eea5d3e6051be189736b94e13be847159c87cd7 (patch) | |
tree | c046043a8e2a0fcb4702344f6a87883c9efb5b72 /npc/re/instances/HazyForest.txt | |
parent | bd18b127755adaea4d958574b5b7f26c8d818b50 (diff) | |
download | hercules-7eea5d3e6051be189736b94e13be847159c87cd7.tar.gz hercules-7eea5d3e6051be189736b94e13be847159c87cd7.tar.bz2 hercules-7eea5d3e6051be189736b94e13be847159c87cd7.tar.xz hercules-7eea5d3e6051be189736b94e13be847159c87cd7.zip |
ItemID to Constant: re Folder
Diffstat (limited to 'npc/re/instances/HazyForest.txt')
-rw-r--r-- | npc/re/instances/HazyForest.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/re/instances/HazyForest.txt b/npc/re/instances/HazyForest.txt index d3c017a47..d92934dc5 100644 --- a/npc/re/instances/HazyForest.txt +++ b/npc/re/instances/HazyForest.txt @@ -462,7 +462,7 @@ OnMyMobDead: 1@mist,73,290,0 script Mysterious Flower#1 CLEAR_NPC,{ specialeffect EF_LEVEL99_4; disablenpc instance_npcname(strnpcinfo(0)); - getitem 12561,1; //Mysterious_Seed + getitem Mysterious_Seed,1; end; } 1@mist,69,295,0 duplicate(Mysterious Flower#1) Mysterious Flower#2 CLEAR_NPC @@ -816,7 +816,7 @@ mora,46,152,5 script Flower Smelling Lady 4_F_NYDHOG,{ } mora,48,152,3 script Sharp Eyed Man 4_M_ROKI2,{ - if (checkweight(1201,1) == 0 || MaxWeight - Weight < 1000) { + if (checkweight(Knife,1) == 0 || MaxWeight - Weight < 1000) { mes "- You have too many items to do this quest. -"; close; } @@ -919,8 +919,8 @@ mora,48,152,3 script Sharp Eyed Man 4_M_ROKI2,{ mes "May the blessing of Mother Yggdrasil be with you..."; ep14_1_mistwoods = 10; completequest 7213; - getitem 2568,1; //Muffler_Of_Roki - getitem 2858,1; //Pendant_Of_Guardian + getitem Muffler_Of_Roki,1; + getitem Pendant_Of_Guardian,1; getexp 400000,400000; close; } else { @@ -1012,7 +1012,7 @@ OnInstanceInit: //== Warp Portals ========================================== bif_fild01,38,374,0 script Mysterious Flower#ep14_1 CLEAR_NPC,{ mes "It's a giant flower with mysterious energy."; - if (countitem(12561)) { + if (countitem(Mysterious_Seed)) { mes "It's reacting to the Mysterious Flower Seeds you have with you."; next; switch(select("Observe the reaction.:Stop the reaction.")) { @@ -1020,7 +1020,7 @@ bif_fild01,38,374,0 script Mysterious Flower#ep14_1 CLEAR_NPC,{ mes "The flower started to shake violently"; mes "and swing forward as if trying to send the seeds as far away as possible!!!"; close2; - delitem 12561,1; //Mysterious_Seed + delitem Mysterious_Seed,1; warp "bif_fild02",160,230; end; case 2: |