Jump to content

Question

Posted

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 !

2 answers to this question

Recommended Posts

Posted

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.

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