summaryrefslogtreecommitdiff
path: root/npc/re
diff options
context:
space:
mode:
Diffstat (limited to 'npc/re')
-rw-r--r--npc/re/jobs/3-1/archbishop.txt4
-rw-r--r--npc/re/jobs/3-1/guillotine_cross.txt4
-rw-r--r--npc/re/quests/eden/91-99.txt4
3 files changed, 6 insertions, 6 deletions
diff --git a/npc/re/jobs/3-1/archbishop.txt b/npc/re/jobs/3-1/archbishop.txt
index 8baccd876..03dc40319 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;
}
diff --git a/npc/re/jobs/3-1/guillotine_cross.txt b/npc/re/jobs/3-1/guillotine_cross.txt
index b08062603..c2796526b 100644
--- a/npc/re/jobs/3-1/guillotine_cross.txt
+++ b/npc/re/jobs/3-1/guillotine_cross.txt
@@ -37,7 +37,7 @@
que_job01,75,96,3 script Guild Member#3rdgc01 4_M_MOCASS1,{
if (job_3rd_gc == 0) {
if (Class == Job_Assassin || Class == Job_Assassin_Cross || Class == Job_Baby_Assassin) {
- if (BaseLevel == 99) {
+ if (BaseLevel >= 99) {
L_Mission:
mes "[Ahcart]";
mes "Finally, it's time...";
@@ -127,7 +127,7 @@ que_job01,75,96,3 script Guild Member#3rdgc01 4_M_MOCASS1,{
mes "You are not an assassin.";
close;
} else if (job_3rd_gc == 1) {
- if (BaseLevel == 99) goto L_Mission;
+ if (BaseLevel >= 99) goto L_Mission;
mes "[Ahcart]";
mes "If you become stronger and more skillful, then the assassin's guild will give you a special task.";
mes "Go for it.";
diff --git a/npc/re/quests/eden/91-99.txt b/npc/re/quests/eden/91-99.txt
index d310b4279..2c86f6091 100644
--- a/npc/re/quests/eden/91-99.txt
+++ b/npc/re/quests/eden/91-99.txt
@@ -206,11 +206,11 @@ L_Quest:
setquest .@quest2;
// Job Experience calculation.
- if (JobLevel > 50 && JobLevel < 56) .@jexp = 67000;
+ if (JobLevel < 56) .@jexp = 67000;
else if (JobLevel > 55 && JobLevel < 61) .@jexp = 94000;
else if (JobLevel > 60 && JobLevel < 66) .@jexp = 141000;
else if (JobLevel > 65 && JobLevel < 69) .@jexp = 212000;
- else if (JobLevel == 69) .@jexp = 311000;
+ else if (JobLevel >= 69) .@jexp = 311000;
getexp getarg(2),.@jexp;
close;