3rd Job Quest compatibility fix

The job quests now (all) support servers where the 2nd classes can be over baselevel 99.
Most of them were correct anyway, because they check for BaseLevel > 98 and JobLevel > 49.
This commit is contained in:
Lemongrass3110 2015-01-25 23:04:25 +01:00
parent 707403d0b6
commit bffabe9c75
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ prt_church,103,88,3 script Praying Minister#arch 60,{
mes "I'm going to make them ministers worthy of serving Odin."; mes "I'm going to make them ministers worthy of serving Odin.";
close; close;
} }
if ((BaseLevel == 99) && (JobLevel > 49)) { if ((BaseLevel > 98) && (JobLevel > 49)) {
if (job_arch == 0) { if (job_arch == 0) {
if (SkillPoint) { 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~"; mes "You can't change jobs without using all your skill points. Please use all of your skill points before applying to change jobs~";

View File

@ -24,7 +24,7 @@
que_job01,75,96,3 script Guild Member#3rdgc01 997,{ que_job01,75,96,3 script Guild Member#3rdgc01 997,{
if (job_3rd_gc == 0) { if (job_3rd_gc == 0) {
if (Class == Job_Assassin || Class == Job_Assassin_Cross || Class == Job_Baby_Assassin) { if (Class == Job_Assassin || Class == Job_Assassin_Cross || Class == Job_Baby_Assassin) {
if (BaseLevel == 99) { if (BaseLevel > 98) {
L_Mission: L_Mission:
mes "[Ahcart]"; mes "[Ahcart]";
mes "Finally, it's time..."; mes "Finally, it's time...";
@ -120,7 +120,7 @@ que_job01,75,96,3 script Guild Member#3rdgc01 997,{
mes "You are not an assassin."; mes "You are not an assassin.";
close; close;
} else if (job_3rd_gc == 1) { } else if (job_3rd_gc == 1) {
if (BaseLevel == 99) goto L_Mission; if (BaseLevel > 98) goto L_Mission;
mes "[Ahcart]"; mes "[Ahcart]";
mes "If you become stronger and more skillful, then the assassin's guild will give you a special task."; mes "If you become stronger and more skillful, then the assassin's guild will give you a special task.";
mes "Go for it."; mes "Go for it.";

View File

@ -18,7 +18,7 @@
yuno,129,156,3 script Chainheart 923,{ yuno,129,156,3 script Chainheart 923,{
mes "[Chainheart]"; mes "[Chainheart]";
if (BaseLevel > 99) { if (eaclass() & EAJL_THIRD) {
mes "Living as a Mechanic is tough,"; mes "Living as a Mechanic is tough,";
mes "but I am happy that I can"; mes "but I am happy that I can";
mes "always do what I want."; mes "always do what I want.";

View File

@ -95,7 +95,7 @@ in_rogue,376,100,5 script Guild Member#sc01 828,{
mes "[Vin]"; mes "[Vin]";
mes "What?"; mes "What?";
next; next;
if (BaseLevel == 99) { if (BaseLevel > 98) {
mes "[Scary man]"; mes "[Scary man]";
mes "Hey there?"; mes "Hey there?";
next; next;