diff options
author | AnnieRuru <jeankof@ymail.com> | 2016-01-14 02:55:55 +0800 |
---|---|---|
committer | AnnieRuru <jeankof@ymail.com> | 2016-01-14 02:55:55 +0800 |
commit | d0c439d1befa776f2a072a42420a0dcc90f8ca5d (patch) | |
tree | 48600d6ccb8bf8eb695ef1523571ff5920464e6d /npc/re/jobs/3-1/guillotine_cross.txt | |
parent | 9e48e2aebd5777179bd2fc2f45a58f8ad17b1373 (diff) | |
download | hercules-d0c439d1befa776f2a072a42420a0dcc90f8ca5d.tar.gz hercules-d0c439d1befa776f2a072a42420a0dcc90f8ca5d.tar.bz2 hercules-d0c439d1befa776f2a072a42420a0dcc90f8ca5d.tar.xz hercules-d0c439d1befa776f2a072a42420a0dcc90f8ca5d.zip |
Fix 3rd jobs BaseLevel requirement
Diffstat (limited to 'npc/re/jobs/3-1/guillotine_cross.txt')
-rw-r--r-- | npc/re/jobs/3-1/guillotine_cross.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/re/jobs/3-1/guillotine_cross.txt b/npc/re/jobs/3-1/guillotine_cross.txt index a780093f1..680f6da6d 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."; |