Add expanded 4ths to jobmaster (#8267)
This commit is contained in:
parent
14a22de993
commit
73b878db37
@ -184,7 +184,28 @@ function Job_Options {
|
|||||||
Job_Options(.@job_opt,roclass(.@eac|EAJL_THIRD)); // Expanded SN is "third" cls
|
Job_Options(.@job_opt,roclass(.@eac|EAJL_THIRD)); // Expanded SN is "third" cls
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// babies don't get to become 4th jobs
|
||||||
|
if (.FourthExpanded && .@eac == EAJ_REBELLION) {
|
||||||
|
Require_Level(.Req_Fourth[0], .Req_Fourth[1]);
|
||||||
|
Job_Options(.@job_opt, roclass(EAJ_NIGHT_WATCH));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (.FourthExpanded && .@eac == EAJ_KAGEROUOBORO) {
|
||||||
|
Require_Level(.Req_Fourth[0], .Req_Fourth[1]);
|
||||||
|
Job_Options(.@job_opt, roclass(EAJ_SHINKIRO_SHIRANUI));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (.FourthExpanded && .@eac == EAJ_SUPER_NOVICE_E) {
|
||||||
|
Require_Level(.Req_Fourth[0], .Req_Fourth[1]);
|
||||||
|
Job_Options(.@job_opt, roclass(EAJ_HYPER_NOVICE));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (.FourthExpanded && .@eac == EAJ_SUMMONER) {
|
||||||
|
Require_Level(.Req_SHandler[0], .Req_SHandler[1]);
|
||||||
|
Job_Options(.@job_opt, roclass(EAJ_SPIRIT_HANDLER));
|
||||||
|
}
|
||||||
|
|
||||||
if (.SecondExpanded &&
|
if (.SecondExpanded &&
|
||||||
((.@eac&(~EAJL_BABY)) == EAJ_NINJA || // is (Baby) Ninja
|
((.@eac&(~EAJL_BABY)) == EAJ_NINJA || // is (Baby) Ninja
|
||||||
(.@eac&(~EAJL_BABY)) == EAJ_GUNSLINGER)) { // is (Baby) Gunslinger
|
(.@eac&(~EAJL_BABY)) == EAJ_GUNSLINGER)) { // is (Baby) Gunslinger
|
||||||
@ -483,6 +504,7 @@ OnInit:
|
|||||||
|
|
||||||
// Settings
|
// Settings
|
||||||
.FourthClass = true; // Enable fourth classes?
|
.FourthClass = true; // Enable fourth classes?
|
||||||
|
.FourthExpanded = true; // Enable new expanded fourth classes: Ex. Hyper Novice, Rebellion, Shinkiro/Shiranui?
|
||||||
.ThirdClass = true; // Enable third classes?
|
.ThirdClass = true; // Enable third classes?
|
||||||
.RebirthClass = true; // Enable rebirth classes?
|
.RebirthClass = true; // Enable rebirth classes?
|
||||||
.SecondExpanded = true; // Enable new expanded second classes: Ex. Super Novice, Kagerou/Oboro, Rebellion?
|
.SecondExpanded = true; // Enable new expanded second classes: Ex. Super Novice, Kagerou/Oboro, Rebellion?
|
||||||
@ -504,6 +526,7 @@ OnInit:
|
|||||||
setarray .Req_Fourth[0],200,70; // Minimum base level, job level to change to fourth class
|
setarray .Req_Fourth[0],200,70; // Minimum base level, job level to change to fourth class
|
||||||
setarray .Req_Exp_NJ_GS[0],99,70; // Minimum base level, job level to turn into Expanded Ninja and Gunslinger
|
setarray .Req_Exp_NJ_GS[0],99,70; // Minimum base level, job level to turn into Expanded Ninja and Gunslinger
|
||||||
setarray .Req_Exp_SNOVI[0],99,99; // Minimum base level, job level to turn into Expanded Super Novice
|
setarray .Req_Exp_SNOVI[0],99,99; // Minimum base level, job level to turn into Expanded Super Novice
|
||||||
|
setarray .Req_SHandler[0],200,60; // Minimum base level, job level to turn into Spirit Handler
|
||||||
.SNovice = 45; // Minimum base level to turn into Super Novice
|
.SNovice = 45; // Minimum base level to turn into Super Novice
|
||||||
|
|
||||||
// Setting adjustments by PACKETVER
|
// Setting adjustments by PACKETVER
|
||||||
|
Loading…
x
Reference in New Issue
Block a user