diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-30 23:59:10 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-30 23:59:10 +0000 |
commit | 1ce8bd7486059d05b3953d2412dc060f316a9e06 (patch) | |
tree | f370ab734779560f1388b4918ce439bc1d06c08b /npc/pre-re/quests/skills/acolyte_skills.txt | |
parent | dc97ceb8baf6c646f16c5bed0064e5d136c1d768 (diff) | |
download | hercules-1ce8bd7486059d05b3953d2412dc060f316a9e06.tar.gz hercules-1ce8bd7486059d05b3953d2412dc060f316a9e06.tar.bz2 hercules-1ce8bd7486059d05b3953d2412dc060f316a9e06.tar.xz hercules-1ce8bd7486059d05b3953d2412dc060f316a9e06.zip |
* Fixed job level issues on remaining first class Platinum Skill quests, incl. bugreport:6374 (quests\skills\)
* Some optimization of Ranger job quest (re\jobs\3-1\ranger.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16538 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/pre-re/quests/skills/acolyte_skills.txt')
-rw-r--r-- | npc/pre-re/quests/skills/acolyte_skills.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/pre-re/quests/skills/acolyte_skills.txt b/npc/pre-re/quests/skills/acolyte_skills.txt index c6dd68f4e..2d797d714 100644 --- a/npc/pre-re/quests/skills/acolyte_skills.txt +++ b/npc/pre-re/quests/skills/acolyte_skills.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88 //===== Current Version: ===================================== -//= 1.7 +//= 1.8 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= @@ -12,6 +12,7 @@ //= 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] +//= 1.8 Fixed JobLevel requirements. [Euphy] //============================================================ prt_church,173,23,4 script Cleric 79,{ @@ -67,7 +68,7 @@ prt_church,173,23,4 script Cleric 79,{ mes "this skill for the work of good . ."; close; } - if ((countitem(727) > 0) && (countitem(991) > 0) && (countitem(2608) > 0) && (JobLevel > 29) && (BaseClass == Job_Acolyte)) { + if ((countitem(727) > 0) && (countitem(991) > 0) && (countitem(2608) > 0) && (JobLevel > 29 || (BaseJob == Job_Priest || BaseJob == Job_Monk)) && (BaseClass == Job_Acolyte)) { mes "[Acolyte Klift]"; mes "Your faith has proven worthy"; mes "for you to gain the ' Holy Light ' skill."; |