[Guide] How to add Custom Jobs

Yes, i am very sure and i think the problem is with the mmo.h

Since the last job was 4215 and the custom one is 4230

I am getting 4216 upto 4229 unknown job errors.

 
Last edited by a moderator:
@@vBrenth its not an error they are just warnings because you don't have any entry in the job_db files for the job ids 4216 - 4229.

You can ignore those warnings. Or you can use a job id closer to 4215 (But it could clash with any new jobs that Gravity adds in future - Not sure which IDs Summoner class uses but its probably not in the 4k range).

 
@@vBrenth its not an error they are just warnings because you don't have any entry in the job_db files for the job ids 4216 - 4229.

You can ignore those warnings. Or you can use a job id closer to 4215 (But it could clash with any new jobs that Gravity adds in future - Not sure which IDs Summoner class uses but its probably not in the 4k range).
Summoner uses ID 4218
BDrR7Qi.png


I don't have any errors, custom job works, but i am getting this warning.
bool pc_db_checkid(unsigned int class_){ return class_ < JOB_MAX_BASIC || (class_ >= JOB_NOVICE_HIGH && class_ <= JOB_DARK_COLLECTOR ) || (class_ >= JOB_RUNE_KNIGHT && class_ <= JOB_MECHANIC_T2 ) || (class_ >= JOB_BABY_RUNE && class_ <= JOB_BABY_MECHANIC2 ) || (class_ >= JOB_SUPER_NOVICE_E && class_ <= JOB_SUPER_BABY_E ) || (class_ >= JOB_KAGEROU && class_ <= JOB_OBORO ) || (class_ >= JOB_REBELLION && class_ < JOB_MAX );}change to
Code:
bool pc_db_checkid(unsigned int class_){	return class_ < JOB_MAX_BASIC		|| (class_ >= JOB_NOVICE_HIGH    && class_ <= JOB_DARK_COLLECTOR )		|| (class_ >= JOB_RUNE_KNIGHT    && class_ <= JOB_MECHANIC_T2    )		|| (class_ >= JOB_BABY_RUNE      && class_ <= JOB_BABY_MECHANIC2 )		|| (class_ >= JOB_SUPER_NOVICE_E && class_ <= JOB_SUPER_BABY_E   )		|| (class_ >= JOB_KAGEROU        && class_ <= JOB_OBORO          )		|| (class_ == JOB_REBELLION) || (class_ >= JOB_YOURCUSTOMCLASS     && class_ <  JOB_MAX            );}
^ on PC.cAssuming that your custom classes are consecutive and JOB_YOURCUSTOMCLASS is job with lowest job ID...

 
Last edited by a moderator:
Work thanks!

 
Last edited by a moderator:
Hi people
default_biggrin.png
have you done this thing?

herc.ws/board/topic/12533-skill-tree-view-for-custom-jobs/

 
Hello my client (2014-10-22b) crashes when i change gender to female of any job. How to fix this? i already patched custom job.

 
Just crash, no errors? Try to diff your ragexe with Ignore Missing File error and ignore Missing Pallete Error, to check whats wrong.

 
what if i wanted to replace all the original jobs into a custom one? like change all their appearances and skills.

 
Enable Custom Job diff doesn't work in latest clients (After Doram/Summoner implementation).

The client exe doesn't open, will you update this?

PS: I'm using "2015-11-04aRagexe"

 
hello




 






i am using 2014-10-22b client, and enabled custom jobs. however when i change job to that custom class it causes my client to crash




 






please help 
default_sad.png

 





 
I have a custom job that works on my 2015-dec version of Herc.

After updating it i am getting this one

gjyUzQk.png


Tried to  increase the skill_id issue still the same.
 

 
I have a custom job that works on my 2015-dec version of Herc.

After updating it i am getting this one

gjyUzQk.png


Tried to  increase the skill_id issue still the same.
There's 2 skill with ID 2800,2802,2803,2804.

Just open file and search "ID: 2800", you would get 2 hits 

 
I have a custom job that works on my 2015-dec version of Herc.

After updating it i am getting this one

gjyUzQk.png


Tried to  increase the skill_id issue still the same.
There's 2 skill with ID 2800,2802,2803,2804.

Just open file and search "ID: 2800", you would get 2 hits 

94jT2nE.png


Tried, really can't find one.

 
How to make custom job with this jobs?

(Padawan job to Jedi job) for more details its like (Knight to Lord Knight)

Sith job

i want to put it in my test server thos 3 jobs

Padawan(1st job)

Jedi(Trans job of Padawan)

Sith

can anyone help me on this one?

icustom.png

 
I tried to make a copy of the paladin job, it gave almost everything right, when I switch to the new class it works, but when I try to mount the peco, it does not appear the mounted sprite.
I have the necessary skill, the icon I am mounted appears, the speed increases and works normally, only the sprite does not change.
I added the cashmount and it works, but the peco does not.
Does anybody know where this job link goes with your mount?
In the files Lua only has the connection with cashmount, will it be on the server side?

 
Back
Top