Jump to content
  • 0
Sign in to follow this  
Hyoru

[Modify]Job Master

Question

Hello,

 

How can I remove taekwon, Soul Linker and Star Gladiator from the jobmaster?

 

I've tried to remove Job_Taekwon:

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_Swordman, Job_Mage, Job_Archer, Job_Acolyte, Job_Merchant, Job_Thief,			         Job_SuperNovice, Job_Taekwon, Job_Gunslinger, Job_Ninja, Job_Baby);

 

It works in parts, because novice can't change to taekwon, but a taekwon can change to Soul Linker and Star Gladiator..

My Server has a quest to those jobs, so I need to remove them from job master.

Thanks advanced.

Edited by Mhalicot
Title Modified, Added specific information

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Solved by myself:

 

	mes "[Job Master]";	if (Class > Job_Soul_Linker) {		mes "No more jobs are available.";		close;	}+	mes "[Job Master]";+	if (Class == Job_Taekwon) {+		mes "There is a quest for your job. I'm sorry.";+		close;+	}

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.