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/quests/eden/71-85.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/quests/eden/71-85.txt')
-rw-r--r-- | npc/re/quests/eden/71-85.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/re/quests/eden/71-85.txt b/npc/re/quests/eden/71-85.txt index c4f75c122..36108afec 100644 --- a/npc/re/quests/eden/71-85.txt +++ b/npc/re/quests/eden/71-85.txt @@ -35,7 +35,7 @@ //========================================================================= moc_para01,44,38,3 script Mission [71 - 85] 4_BOARD3,{ - if (countitem(6219) < 1) { + if (countitem(Para_Team_Mark) < 1) { mes "- Only members of the -"; mes "- Eden Group can read -"; mes "- this bulletin board. -"; @@ -74,7 +74,7 @@ moc_para01,44,38,3 script Mission [71 - 85] 4_BOARD3,{ if (questprogress(.@quests[.@i],HUNTING) == 2) .@complete[getarraysize(.@complete)] = .@quests[.@i]; } - if (questprogress(5057) && countitem(7187) >= 30) + if (questprogress(5057) && countitem(Festival_Mask) >= 30) .@complete[getarraysize(.@complete)] = 5057; if (getarraysize(.@complete)) { mes "You have quests in progress."; @@ -194,7 +194,7 @@ L_Quest: mes "'"+.@name$+"' completed. Do you want to turn it in and receive your reward?"; next; if(select("Turn in quest.:Cancel.") == 1) { - if (.@quest == 5057) delitem 7187,30; //Festival_Mask + if (.@quest == 5057) delitem Festival_Mask,30; erasequest .@quest; getexp .@exp,0; mes "You've received EXP for finishing the quest."; @@ -207,7 +207,7 @@ L_Quest: // Quest 5057 is the only collection quest, so separate conditions are unnecessary. if (!questprogress(5057)) .@hunting = 0; - else if (countitem(7187) >= 30) + else if (countitem(Festival_Mask) >= 30) .@hunting = 2; } else { .@hunting = questprogress(.@quest,HUNTING); @@ -221,7 +221,7 @@ L_Quest: mes "You have completed the quest."; next; if(select("Turn in quest.:Cancel.") == 1) { - if (.@quest == 5057) delitem 7187,30; //Festival_Mask + if (.@quest == 5057) delitem Festival_Mask,30; erasequest .@quest; getexp .@exp,0; mes "You've received EXP for finishing the quest."; |