So for rev.116 the cm.maxMastery command seems to reset your skills instead of maxing them, so I went into the commands , found the !maxskills command and took that, soo if your cm.maxMastery isnt working, go into
npcConversationManager.java and find
and change it toCode:public void maxMastery() { for (MapleData skill_ : MapleDataProviderFactory.getDataProvider(new File(System.getProperty("wzpath") + "/" + "String.wz")).getData("Skill.img").getChildren()) { try { ISkill skill = SkillFactory.getSkill(Integer.parseInt(skill_.getName())); c.getPlayer().changeSkillLevel(skill, 0, skill.getMaxLevel(), -1); } catch (NumberFormatException nfe) { break; } catch (NullPointerException npe) { continue; } } }
Code:public void maxMastery() { for (MapleData skill_ : MapleDataProviderFactory.getDataProvider(new File(System.getProperty("wzpath") + "/" + "String.wz")).getData("Skill.img").getChildren()) { try { ISkill skill = SkillFactory.getSkill(Integer.parseInt(skill_.getName())); getPlayer().changeSkillLevel(skill, (byte) skill.getMaxLevel(), skill.getMaxLevel(), -1); } catch (NumberFormatException nfe) { break; } catch (NullPointerException npe) { continue; } } }


Reply With Quote


