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/priest_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/priest_skills.txt')
-rw-r--r-- | npc/quests/skills/priest_skills.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/quests/skills/priest_skills.txt b/npc/quests/skills/priest_skills.txt index 41a8919eb..858eaa3d1 100644 --- a/npc/quests/skills/priest_skills.txt +++ b/npc/quests/skills/priest_skills.txt @@ -283,7 +283,7 @@ prt_church,111,112,1 script Sister Linus 1_F_PRIEST,{ } else if (PRIEST_SK == 2) { if (getskilllv("ALL_RESURRECTION") > 0) { - if (countitem(523) > 29 && countitem(717) > 19) { + if (countitem(Holy_Water) > 29 && countitem(Blue_Gemstone) > 19) { mes "[Sister Linus]"; mes "Ooh, it seems like you've"; mes "brought everything that you"; @@ -328,8 +328,8 @@ prt_church,111,112,1 script Sister Linus 1_F_PRIEST,{ mes "Please remember to only"; mes "use this skill in the most"; mes "critical situations."; - delitem 717,20; //Blue_Gemstone - delitem 523,30; //Holy_Water + delitem Blue_Gemstone,20; + delitem Holy_Water,30; PRIEST_SK = 100; skill "PR_REDEMPTIO",1,0; close; @@ -343,8 +343,8 @@ prt_church,111,112,1 script Sister Linus 1_F_PRIEST,{ mes "I'll be waiting right here,"; mes "so we can try again when"; mes "you're ready, okay?"; - delitem 717,1; //Blue_Gemstone - delitem 523,1; //Holy_Water + delitem Blue_Gemstone,1; + delitem Holy_Water,1; close; } |