• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

New classes~!

Newbie Spellweaver
Joined
Apr 9, 2022
Messages
12
Reaction score
1
Is there any way to disable the creation of new classes At,Bard,gunner... by src ? :$:
 
Junior Spellweaver
Joined
Jun 8, 2013
Messages
153
Reaction score
6
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.
 
Upvote 0
Junior Spellweaver
Joined
Sep 18, 2013
Messages
185
Reaction score
19
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.
Spray - New classes~! - RaGEZONE Forums
 
Upvote 0
Back
Top