diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:35:54 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:36 +0100 |
commit | 48122727289c06906d8c4e38e183bb0a16ddbb53 (patch) | |
tree | decd7a501b337f730cb2c16285e2d10049a4026e /npc/quests/skills/crusader_skills.txt | |
parent | ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac (diff) | |
download | hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.gz hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.bz2 hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.xz hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.zip |
ItemID to Constant: quests/woe Folder
Diffstat (limited to 'npc/quests/skills/crusader_skills.txt')
-rw-r--r-- | npc/quests/skills/crusader_skills.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/quests/skills/crusader_skills.txt b/npc/quests/skills/crusader_skills.txt index 45176af64..64f63b384 100644 --- a/npc/quests/skills/crusader_skills.txt +++ b/npc/quests/skills/crusader_skills.txt @@ -380,7 +380,7 @@ gef_fild13,297,242,3 script Soldier#277 4_M_CRU,{ close; } else if (CRUS_SK == 2) { - if (countitem(501) > 0) { + if (countitem(Red_Potion) > 0) { mes "["+ strcharinfo(0) +"]"; mes "Here, please take"; mes "this Red Potion."; @@ -406,7 +406,7 @@ gef_fild13,297,242,3 script Soldier#277 4_M_CRU,{ mes "patrol report. Some of the"; mes "pages are smudged with"; mes "the blood from his wound.^000000"; - delitem 501,1; //Red_Potion + delitem Red_Potion,1; CRUS_SK = 3; close; } @@ -673,7 +673,7 @@ prt_church,87,127,3 script Pastor#1011 4_M_SAGE_C,{ close; } else if (CRUS_SK == 5) { - if (countitem(514) > 0 && countitem(619) > 0 && countitem(1003) > 0 && countitem(7053) > 2 && countitem(713) > 2 && countitem(909) > 4 && countitem(938) > 19) { + if (countitem(Grape) > 0 && countitem(Unripe_Apple) > 0 && countitem(Coal) > 0 && countitem(Cyfar) > 2 && countitem(Empty_Bottle) > 2 && countitem(Jellopy) > 4 && countitem(Sticky_Mucus) > 19) { mes "[Father Arthur]"; mes "Ah, you've returned."; mes "Now let me check to"; @@ -703,13 +703,13 @@ prt_church,87,127,3 script Pastor#1011 4_M_SAGE_C,{ mes "to worry about collecting"; mes "materials again. Now, give"; mes "me a moment to distill this..."; - delitem 938,20; //Sticky_Mucus - delitem 619,1; //Unripe_Apple - delitem 909,5; //Jellopy - delitem 514,1; //Grape - delitem 1003,1; //Coal - delitem 7053,3; //Cyfar - delitem 713,3; //Empty_Bottle + delitem Sticky_Mucus,20; + delitem Unripe_Apple,1; + delitem Jellopy,5; + delitem Grape,1; + delitem Coal,1; + delitem Cyfar,3; + delitem Empty_Bottle,3; CRUS_SK = 6; close; } |