Jump to content
  • 0

Custom Item SCRIPT


iubantot

Question


  • Group:  Members
  • Topic Count:  117
  • Topics Per Day:  0.03
  • Content Count:  312
  • Reputation:   34
  • Joined:  10/15/12
  • Last Seen:  

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.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  100
  • Topics Per Day:  0.03
  • Content Count:  333
  • Reputation:   7
  • Joined:  03/01/14
  • Last Seen:  

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;
}
Link to comment
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.   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.

×
×
  • Create New...