diff options
author | Dastgir <dastgir@users.noreply.github.com> | 2016-01-19 10:23:56 +0530 |
---|---|---|
committer | Dastgir <dastgir@users.noreply.github.com> | 2016-01-19 10:23:56 +0530 |
commit | 0ed2d09e9aa88af01698707fd701363bdbd92b4b (patch) | |
tree | c1a885fcec0905d5cfa6e0a9aca6fa69ab7eed3c /npc/re/jobs/3-1/archbishop.txt | |
parent | e60b1484fbe2e22f1b1bf711c63466bb13c5a474 (diff) | |
parent | d0c439d1befa776f2a072a42420a0dcc90f8ca5d (diff) | |
download | hercules-0ed2d09e9aa88af01698707fd701363bdbd92b4b.tar.gz hercules-0ed2d09e9aa88af01698707fd701363bdbd92b4b.tar.bz2 hercules-0ed2d09e9aa88af01698707fd701363bdbd92b4b.tar.xz hercules-0ed2d09e9aa88af01698707fd701363bdbd92b4b.zip |
Merge pull request #1098 from AnnieRuru/request_31
Fix 3rd jobs BaseLevel requirement
Diffstat (limited to 'npc/re/jobs/3-1/archbishop.txt')
-rw-r--r-- | npc/re/jobs/3-1/archbishop.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/re/jobs/3-1/archbishop.txt b/npc/re/jobs/3-1/archbishop.txt index ee8a3872f..a40398846 100644 --- a/npc/re/jobs/3-1/archbishop.txt +++ b/npc/re/jobs/3-1/archbishop.txt @@ -64,7 +64,7 @@ prt_church,103,88,3 script Praying Minister#arch 1_M_PASTOR,{ mes "I'm going to make them ministers worthy of serving Odin."; close; } - if ((BaseLevel == 99) && (JobLevel > 49)) { + if ((BaseLevel >= 99) && (JobLevel > 49)) { if (job_arch == 0) { if (SkillPoint) { mes "You can't change jobs without using all your skill points. Please use all of your skill points before applying to change jobs~"; @@ -775,7 +775,7 @@ job3_arch01,29,34,3 script Valkyrie#arch 4_F_VALKYRIE2,{ mes "- and come for the challenge again. -"; close; } - if ((BaseLevel != 99) || (JobLevel < 50) || (BaseJob != Job_Priest)) { + if ((BaseLevel < 99) || (JobLevel < 50) || (BaseJob != Job_Priest)) { warp "odin_tem02",282,263; end; } |