Jump to content
  • 0

Question

Posted

can someone give me a script like false apprentice but instead of turning into a novice the character will turn into its trans class? example : rune knight >> lord knight , Shura >> Champion . and it should only be 1 item.

1 answer to this question

Recommended Posts

Posted

Pretty much the job changer..

Place the job ids for the jobs you want to have at the array .@jobs.

-	script	ItemScript	-1,{
	setarray .@jobs, 4001,4002; //add your job ids here
	set .@menu$,"";
	for (set .@i, 0; .@i < getarraysize(.@jobs); set .@i,.@i +1){
		set .@menu$, .@menu$+jobname(.@jobs[.@i]);
	}
	jobchange .@jobs[select(.@menu$)];
	end;
}

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.   Paste as plain text instead

  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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...