Dragonis1701 0 Posted December 4, 2015 Is there a way to change the starting job from Novice to High Novice? Quote Share this post Link to post Share on other sites
0 Dastgir 1246 Posted December 4, 2015 SQL ALTER TABLE `char` MODIFY `class` SMALLINT(6) UNSIGNED NOT NULL DEFAULT 'HIGH_NOVICE_ID_HERE'; 1 Dragonis1701 reacted to this Quote Share this post Link to post Share on other sites
0 Kuya Jeo 120 Posted December 4, 2015 Is there a way to change the starting job from Novice to High Novice? you can try this, test it first, i didn't test it - script Sample Name FAKE_NPC,{OnPCLoginEvent: if ( (Class == Job_Novice) && ( BaseLevel == 1 && JobLevel == 1) ) { jobchange 4001; end; }end;} Quote Share this post Link to post Share on other sites
0 Dragonis1701 0 Posted December 4, 2015 Is there a way to change the starting job from Novice to High Novice? you can try this, test it first, i didn't test it - script Sample Name FAKE_NPC,{OnPCLoginEvent: if ( (Class == Job_Novice) && ( BaseLevel == 1 && JobLevel == 1) ) { jobchange 4001; end; }end;} Thank you for the script, it works fine. I knew that this was possible via script but I recall running into a file that allowed a server to decide what the character started with and what class they started as. Do you happen to know where it is? Quote Share this post Link to post Share on other sites
0 Kuya Jeo 120 Posted December 4, 2015 (edited) Is there a way to change the starting job from Novice to High Novice? you can try this, test it first, i didn't test it - script Sample Name FAKE_NPC,{OnPCLoginEvent: if ( (Class == Job_Novice) && ( BaseLevel == 1 && JobLevel == 1) ) { jobchange 4001; end; }end;} Thank you for the script, it works fine. I knew that this was possible via script but I recall running into a file that allowed a server to decide what the character started with and what class they started as. Do you happen to know where it is? hmm you want them to choose what ever job they want? its like Auto Job Changer in their 1st Login? Edited December 4, 2015 by Zhao Chow Quote Share this post Link to post Share on other sites
0 Dragonis1701 0 Posted December 4, 2015 Is there a way to change the starting job from Novice to High Novice? you can try this, test it first, i didn't test it - script Sample Name FAKE_NPC,{OnPCLoginEvent: if ( (Class == Job_Novice) && ( BaseLevel == 1 && JobLevel == 1) ) { jobchange 4001; end; }end;} Thank you for the script, it works fine. I knew that this was possible via script but I recall running into a file that allowed a server to decide what the character started with and what class they started as. Do you happen to know where it is? hmm you want them to choose what ever job they want? its like Auto Job Changer in their 1st Login? Nah, I just want them to start as High Novice from character creation, instead of starting as novice and then having to login and seeing the job change effect in order to be High Novice. Quote Share this post Link to post Share on other sites
0 Dragonis1701 0 Posted December 4, 2015 SQL ALTER TABLE `char` MODIFY `class` SMALLINT(6) UNSIGNED NOT NULL DEFAULT 'HIGH_NOVICE_ID_HERE'; That worked perfectly. Thank you both. ^^ Quote Share this post Link to post Share on other sites
Is there a way to change the starting job from Novice to High Novice?
Share this post
Link to post
Share on other sites