Instant Third-Class Jobs

my players keep getting prompted by this to choose their job . how to fix this ?

Thanks
This will only prompt players if they do not have the variable auto_third set; if they've already selected their job once, they won't encounter the message anymore. However, if you're loading this (as it is) into a live server, pre-existing players will also be prompted, even if they already have their class of choice. To prevent this from happening, change this line:

if(auto_third) {

to this:

Code:
if(auto_third || Class) {
 
Last edited by a moderator:
Mine still the same the prompt can still be close on first load. Im giving up maybe ill use the default behavior. Thanks for this bro!

 
How about Gunslinger and other classes? I'm just wondering how to add them on the list. Is it possible to include them on the menu with different array for Job Points?

 
How about Gunslinger and other classes? I'm just wondering how to add them on the list. Is it possible to include them on the menu with different array for Job Points?
This script was originally intended for third classes only (hence the name), but I wrote it in such a way that you could seamlessly add or remove jobs if desired.

To add a new job, add its name to the .job_name$ array and constant/ID to the .job_id array; if you're primarily using the *_t arrays, modify those ones instead. For skill points, you could add your own check to make sure they got the right amount of points.

 
Well, after some source investigation, it's done that way because you can't do much more in scripting, unles you make your reset NPC give that many status points again.

 
It's official, these are the extra stat points you're normally given when rebirthing.

Since your starting job wasn't high novice, the 100 extra stat points have to be manually added.

 
How to implement that the job change notice will only be visible to Novices? So that existing 3rd jobs wont be bothered.

 
Can I get this but for trans only, not third?
default_sad.png


 
can you please add in the script. when they select a certain job. they will gain a certain weapon for each class.

example if i choose warlock. i will also gain Glorious staff. ty in advance

 
Back
Top