Cebols Posted November 28, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 05/31/17 Last Seen: April 25, 2020 Share Posted November 28, 2018 Hello All, I would like to ask how to disable Star Emperor & Soul Reaper jobs only either from jobchanger npc / server side / source Due currently i still use old client which not yet support Star Emperor & Soul Reaper Thank you Quote Link to comment Share on other sites More sharing options...
0 Arthurion Posted November 28, 2018 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 21 Reputation: 4 Joined: 11/04/18 Last Seen: October 23, 2019 Share Posted November 28, 2018 (edited) It's still nonexistent in rathena, only the job sprite support is available. It shouldn't be a problem even if you don't remove it at the moment Edited November 28, 2018 by Riel Quote Link to comment Share on other sites More sharing options...
0 Cebols Posted December 1, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 05/31/17 Last Seen: April 25, 2020 Author Share Posted December 1, 2018 On 11/28/2018 at 6:36 PM, Riel said: It's still nonexistent in rathena, only the job sprite support is available. It shouldn't be a problem even if you don't remove it at the moment bun from Jobchanger NPC still able to choose to change to this 2 type of jobs, and due my client not support it become job "poring" Thanks Quote Link to comment Share on other sites More sharing options...
0 n0tttt Posted December 1, 2018 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 303 Reputation: 118 Joined: 12/10/16 Last Seen: April 18 Share Posted December 1, 2018 (edited) Change // Checks if the player can change to third class. // Note: This does not include the level checks. function Can_Change_Third { // To change to third class you either need to be: // * Second Class // * Transcendent Second Class // * Baby Second Class if( !.ThirdClass ) return false; // Third job change disabled if( !(eaclass()&EAJL_2) ) return false; // Not second Class if( eaclass()&EAJL_THIRD ) return false; // Already Third Class if( roclass(eaclass()|EAJL_THIRD) < 0 ) return false; // Job has no third Class if( (eaclass()&EAJ_UPPERMASK) == EAJ_SUPER_NOVICE ) return false; // Exp. Super Novice equals 3rd Cls, but has it's own case if( Is_Baby() && (!.BabyClass || !.BabyThird) ) return false; // No Baby (Third) change allowed return true; } to: // Checks if the player can change to third class. // Note: This does not include the level checks. function Can_Change_Third { // To change to third class you either need to be: // * Second Class // * Transcendent Second Class // * Baby Second Class if( !.ThirdClass ) return false; // Third job change disabled if( !(eaclass()&EAJL_2) ) return false; // Not second Class if( eaclass()&EAJL_THIRD ) return false; // Already Third Class if( (eaclass()&EAJ_BASEMASK) == EAJ_TAEKWON ) return false; // No Star Emperor or Soul Reaper. if( roclass(eaclass()|EAJL_THIRD) < 0 ) return false; // Job has no third Class if( (eaclass()&EAJ_UPPERMASK) == EAJ_SUPER_NOVICE ) return false; // Exp. Super Novice equals 3rd Cls, but has it's own case if( Is_Baby() && (!.BabyClass || !.BabyThird) ) return false; // No Baby (Third) change allowed return true; } Edited December 1, 2018 by n0tttt Mistake 1 2 1 Quote Link to comment Share on other sites More sharing options...
0 Cebols Posted December 1, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 05/31/17 Last Seen: April 25, 2020 Author Share Posted December 1, 2018 8 hours ago, n0tttt said: Change // Checks if the player can change to third class. // Note: This does not include the level checks. function Can_Change_Third { // To change to third class you either need to be: // * Second Class // * Transcendent Second Class // * Baby Second Class if( !.ThirdClass ) return false; // Third job change disabled if( !(eaclass()&EAJL_2) ) return false; // Not second Class if( eaclass()&EAJL_THIRD ) return false; // Already Third Class if( roclass(eaclass()|EAJL_THIRD) < 0 ) return false; // Job has no third Class if( (eaclass()&EAJ_UPPERMASK) == EAJ_SUPER_NOVICE ) return false; // Exp. Super Novice equals 3rd Cls, but has it's own case if( Is_Baby() && (!.BabyClass || !.BabyThird) ) return false; // No Baby (Third) change allowed return true; } to: // Checks if the player can change to third class. // Note: This does not include the level checks. function Can_Change_Third { // To change to third class you either need to be: // * Second Class // * Transcendent Second Class // * Baby Second Class if( !.ThirdClass ) return false; // Third job change disabled if( !(eaclass()&EAJL_2) ) return false; // Not second Class if( eaclass()&EAJL_THIRD ) return false; // Already Third Class if( (eaclass()&EAJ_BASEMASK) == EAJ_TAEKWON ) return false; // No Star Emperor or Soul Reaper. if( roclass(eaclass()|EAJL_THIRD) < 0 ) return false; // Job has no third Class if( (eaclass()&EAJ_UPPERMASK) == EAJ_SUPER_NOVICE ) return false; // Exp. Super Novice equals 3rd Cls, but has it's own case if( Is_Baby() && (!.BabyClass || !.BabyThird) ) return false; // No Baby (Third) change allowed return true; } Thanks n0ttt that works...! Quote Link to comment Share on other sites More sharing options...
0 edwardluciano Posted March 25, 2020 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 29 Reputation: 2 Joined: 04/21/16 Last Seen: April 4, 2024 Share Posted March 25, 2020 can i get scrpt change that job ? i need it Quote Link to comment Share on other sites More sharing options...
Question
Cebols
Hello All,
I would like to ask how to disable Star Emperor & Soul Reaper jobs only either from jobchanger npc / server side / source
Due currently i still use old client which not yet support Star Emperor & Soul Reaper
Thank you
Link to comment
Share on other sites
5 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.