diff options
author | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-23 14:14:20 +0000 |
---|---|---|
committer | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-23 14:14:20 +0000 |
commit | 8aa157a569a76cef851fcc43eb17f41948c4360f (patch) | |
tree | a5f931721d504709c07cdae42c2692a7f323c7b7 /npc/quests/skills/acolyte_skills.txt | |
parent | 2e3d951c7a966dca662c34dd6c1d5bd4a4a83984 (diff) | |
download | hercules-8aa157a569a76cef851fcc43eb17f41948c4360f.tar.gz hercules-8aa157a569a76cef851fcc43eb17f41948c4360f.tar.bz2 hercules-8aa157a569a76cef851fcc43eb17f41948c4360f.tar.xz hercules-8aa157a569a76cef851fcc43eb17f41948c4360f.zip |
- Updated 1st class platinum skill NPC's.
- Fixed [bugreport:5606] .
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15949 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/skills/acolyte_skills.txt')
-rw-r--r-- | npc/quests/skills/acolyte_skills.txt | 62 |
1 files changed, 29 insertions, 33 deletions
diff --git a/npc/quests/skills/acolyte_skills.txt b/npc/quests/skills/acolyte_skills.txt index f52d7dd70..4662d2728 100644 --- a/npc/quests/skills/acolyte_skills.txt +++ b/npc/quests/skills/acolyte_skills.txt @@ -3,25 +3,25 @@ //===== By: ================================================== //= kobra_k88 //===== Current Version: ===================================== -//= 1.5 +//= 1.7 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= -//= [Aegis Conversion] //= Quest for skills: Holy Light //===== Additional Comments: ================================= //= 1.5 Rescripted to Aegis 10.3 stadards. [L0ne_W0lf] //= 1.6 Fixed a typo in job check. (Bugreport:1531) [L0ne_W0lf] +//= 1.7 Updated to latest available official file. [Masao] //============================================================ -prt_church,173,23,4 script Cleric#qsk_al 79,{ +prt_church,173,23,4 script Cleric 79,{ mes "[Acolyte Klift]"; mes "Ahh . Brothers ! Does the task of"; mes "caring for out lost sheep burden"; mes "and tire you ?"; mes "I am here to assist you."; next; - switch(select("^3355FF' About acolyte's hidden ability '^000000 ..:^3355FF' Holy light '^000000 training:End conversation")) { + switch (select("^3355FF' About acolyte's hidden ability '^000000 ..:^3355FF' Holy light '^000000 training:End conversation")) { case 1: mes "[Acolyte Klift]"; mes "Our members of the clergy"; @@ -67,40 +67,36 @@ prt_church,173,23,4 script Cleric#qsk_al 79,{ mes "this skill for the work of good . ."; close; } - else { - if (countitem(727) > 0 && countitem(991) > 0 && countitem(2608) > 0) { - if ((JobLevel > 29 && BaseJob == Job_Acolyte) || BaseJob == Job_Monk || BaseJob == Job_Priest) { - mes "[Acolyte Klift]"; - mes "Your faith has proven worthy"; - mes "for you to gain the ' Holy Light ' skill."; - mes "Your skill is adequate"; - mes "to use this skill."; - mes "Use it wisely. . ."; - next; - delitem 727,1; //White_Jewel - delitem 991,1; //Crystal_Blue - delitem 2608,1; //Rosary - skill 156,1,0; - mes "[Acolyte Klift]"; - mes "You now know ' Holy Light '"; - mes "May you use this skill only in the"; - mes "best conduct . . . . ."; - close; - } - } + if ((countitem(727) > 0) && (countitem(991) > 0) && (countitem(2608) > 0) && (JobLevel > 29) && (BaseJob == Job_Acolyte)) { mes "[Acolyte Klift]"; - mes "Oh, it is clear. . ."; - mes "You are not yet ready to"; - mes "receive the ' Holy Light ' skill."; + mes "Your faith has proven worthy"; + mes "for you to gain the ' Holy Light ' skill."; + mes "Your skill is adequate"; + mes "to use this skill."; + mes "Use it wisely. . ."; next; + delitem 727,1; //White_Jewel + delitem 991,1; //Crystal_Blue + delitem 2608,1; //Rosary + skill "AL_HOLYLIGHT",1,0; mes "[Acolyte Klift]"; - mes "You should listen carefully to what"; - mes "is necessary for this skill."; - mes "If you listen closely,"; - mes "you may learn what you lack."; - mes "So that you may improve upon yourself."; + mes "You now know ' Holy Light '"; + mes "May you use this skill only in the"; + mes "best conduct . . . . ."; close; } + mes "[Acolyte Klift]"; + mes "Oh, it is clear. . ."; + mes "You are not yet ready to"; + mes "receive the ' Holy Light ' skill."; + next; + mes "[Acolyte Klift]"; + mes "You should listen carefully to what"; + mes "is necessary for this skill."; + mes "If you listen closely,"; + mes "you may learn what you lack."; + mes "So that you may improve upon yourself."; + close; case 3: mes "[Acolyte Klift]"; mes ". . . . ."; |