Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to disable a certain skill from a job? HeavenMS

Newbie Spellweaver
Joined
Nov 19, 2023
Messages
36
Reaction score
1
I was able to completely delete Blessing of Fairy from the Beginner skill book, by just removing the specific xml files from Skill.wz (both in the source folder and game folder) with WZRepacker.

but it is not entirely OK.

I found this in package constants.skills.Beginner.java

public class Beginner {
/* public static final int BLESSING_OF_THE_FAIRY = 12; */
public static final int FOLLOW_THE_LEADER = 8;
public static final int MAP_CHAIR = 100;
public static final int THREE_SNAILS = 1001;
public static final int RECOVERY = 1001;
public static final int NIMBLE_FEET = 1002;
public static final int MONSTER_RIDER = 1004;
public static final int ECHO_OF_HERO = 1005;
public static final int BAMBOO_RAIN = 1009;
public static final int INVINCIBLE_BARRIER = 1010;
public static final int POWER_EXPLOSION = 1011;
public static final int SPACESHIP = 1013;
public static final int SPACE_DASH = 1014;
public static final int YETI_MOUNT1 = 1017;
public static final int YETI_MOUNT2 = 1018;
public static final int WITCH_BROOMSTICK = 1019;
public static final int BALROG_MOUNT = 1031;
}

So I just commented the BoF line.
Is there anywhere else I need to modify in the code? what am I missing?
Because all the other skills on that list do not show up as a Beginner (except three snails, recovery and nimble feet)

?
 
Last edited:
Joined
Apr 25, 2010
Messages
479
Reaction score
49
Firstly you must post in the correct area, which is help. Second, to disable it you can go to the handlers and block it by ID, or if you want it to not even appear on the client you need to do eng. reversal. Just deleting it from the .wz is not the most recommended way, because a person with a different setup could use the skills you removed in your setup.
 
Back
Top