The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades.
×
- 0
jobmaster.txt
-
Recently Browsing 0 members
- No registered users viewing this page.
Question
gamka
Good afternoon, dear Hercules! Tell me, please, what am I doing wrong? The point is that the NPC would immediately give the 2nd profession + 85 BaseLevel + 50 JobLevel and 58 SkillPoint
if ((.@eac&EAJ_BASEMASK) == EAJ_NOVICE) {
if (JobLevel < .jobchange_first) {
mes "A job level of "+.jobchange_first+" is required to change into the 1st Class.";
} else if (Class == Job_Novice_High && .linear_jobchange && lastJob) {
mes "Switch classes now?";
next;
Job_Menu(roclass((eaclass(lastJob)&EAJ_BASEMASK)|EAJL_UPPER));
} else if (Class == Job_Novice) {
Job_Menu(Job_Crusader, Job_Knight, Job_Rogue, Job_Assassin, Job_Monk, Job_Priest, Job_Wizard, Job_Sage, Job_Alchemist, Job_Blacksmith, Job_Hunter, Job_Bard,Dancer);
get (BaseLevel = 84, JobLevel = 50, SkillPoint = 58);
} else {
mes "An error has occurred.";
}
close;
}
More precisely here:
get (BaseLevel = 84, JobLevel = 50, SkillPoint = 58);
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.