Sook103 Posted May 8, 2015 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 36 Reputation: 1 Joined: 03/31/15 Last Seen: September 16, 2015 Share Posted May 8, 2015 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 ! Quote Link to comment Share on other sites More sharing options...
PandaLovesHamster Posted May 14, 2015 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 452 Reputation: 35 Joined: 12/18/14 Last Seen: May 30, 2016 Share Posted May 14, 2015 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. Quote Link to comment Share on other sites More sharing options...
Sook103 Posted May 16, 2015 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 36 Reputation: 1 Joined: 03/31/15 Last Seen: September 16, 2015 Author Share Posted May 16, 2015 Thank you XD Quote Link to comment Share on other sites More sharing options...
Question
Sook103
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.