Jump to content
  • 0

Job master script


Sook103

Question


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   1
  • Joined:  03/31/15
  • Last Seen:  

Hey i would like the job master to instead skip high novice and high swordsman for example and go straight to trans class like lord knight but it resets their level to 1/1 and stats/skill points !

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   33
  • Joined:  12/18/14
  • Last Seen:  

Hi, you can this script I suppose, just need a little configuration.

-	script	Freebies	-1,{


OnInit:
setarray .JobList[0],4008,4009,4010,4011,4012,4013,4015,4016,4017,4018,4019,4020,4021,4046,4047,4049,24,25,23;
.BaseLevel = 99; // change to 1
.JobLevel = 70; // change to 1
.SkillPoints = 127; // just remove this

.@size = getarraysize( .JobList );
for( .@i = 0; .@i < .@size; .@i++ )
	.Menu$ = .Menu$ + jobname( .JobList[.@i] )+":";
end;



if( Class  != 0 ){
	mes "You are not a novice!";
}else{
	.@i = select( .Menu$ ) - 1;
	if( select( "Change to "+jobname( .JobList[.@i] )+"?:Cancel" ) == 1 ){
		jobchange .JobList[.@i];
		BaseLevel = .BaseLevel;
		JobLevel = .JobLevel;
		resetskill;
		resetstatus;
		SkillPoint = .SkillPoints; // you can comment this out to get no skill points
		mes "DONE";
	}
}
end;
}

Please note, the above script turns a novice to a trans class regardless of level. I'm not good with scripting so if you're gonna need help with this, I might not be able to help you out that much.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   1
  • Joined:  03/31/15
  • Last Seen:  

Thank you XD

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...