New classes~!

Results 1 to 7 of 7
  1. #1
    Apprentice Spray is offline
    MemberRank
    Apr 2022 Join Date
    14Posts

    Question New classes~!

    Is there any way to disable the creation of new classes At,Bard,gunner... by src ?


  2. #2
    "One day at a time" Robyson is offline
    [VIP] MemberRank
    Sep 2013 Join Date
    TzionLocation
    1,857Posts
    Quote Originally Posted by Spray View Post
    Is there any way to disable the creation of new classes At,Bard,gunner... by src ?
    Yes, it's possible...
    This must be implemented in CM_CREATE_CHARACTER.java
    I did some tests on my 4.3 some time ago.

  3. #3
    Proficient Member qw19860616 is offline
    MemberRank
    Jun 2013 Join Date
    151Posts
    if (playerCommonData.getPlayerClass() == PlayerClass.ENGINEER || playerCommonData.getPlayerClass() == PlayerClass.ARTIST) { client.sendPacket(new SM_CREATE_CHARACTER(null, SM_CREATE_CHARACTER.FAILED_TO_CREATE_THE_CHARACTER)); IDFactory.getInstance().releaseId(playerCommonData.getPlayerObjId()); return; }

    This is the code that has been implemented to ban poets and gunmen.

  4. #4
    Proficient Member gruubix is offline
    MemberRank
    Sep 2013 Join Date
    161Posts
    Quote Originally Posted by Robyson View Post
    Yes, it's possible...
    This must be implemented in CM_CREATE_CHARACTER.java
    I did some tests on my 4.3 some time ago.
    You will not be able to completely disable new classes in this version of the game. On the character creation screen, they will be displayed.
    This feature has been available since version 4.8 and up.

  5. #5
    "One day at a time" Robyson is offline
    [VIP] MemberRank
    Sep 2013 Join Date
    TzionLocation
    1,857Posts
    Quote Originally Posted by gruubix View Post
    You will not be able to completely disable new classes in this version of the game. On the character creation screen, they will be displayed.
    This feature has been available since version 4.8 and up.
    Yeah!! this is true, but is there a way to handle it on the client side.

  6. #6
    Proficient Member gruubix is offline
    MemberRank
    Sep 2013 Join Date
    161Posts
    Quote Originally Posted by Robyson View Post
    Yeah!! this is true, but is there a way to handle it on the client side.
    On the server side, it is possible to disable this from version 4.8 and higher. In versions of the game client from version 4.0 to 4.7, this must be cut manually in the game client

  7. #7
    "One day at a time" Robyson is offline
    [VIP] MemberRank
    Sep 2013 Join Date
    TzionLocation
    1,857Posts
    Quote Originally Posted by gruubix View Post
    On the server side, it is possible to disable this from version 4.8 and higher. In versions of the game client from version 4.0 to 4.7, this must be cut manually in the game client
    Yeah!! this is correct.



Advertisement