[Tut] How to edit hp/mp on level up for all jobs.

Joined
Aug 23, 2008
Messages
230
Reaction score
11
Well this kind of worked for me :/ i mean i noticed that when i changed a few things and compiled i got more then usual o.O.
go to MapleCharacter.java and find
Code:
public void levelUp() {
        ISkill improvingMaxHP = SkillFactory.getSkill(1000001);
        ISkill improvingMaxMP = SkillFactory.getSkill(2000001);

        int improvingMaxHPLevel = getSkillLevel(improvingMaxHP);
        int improvingMaxMPLevel = getSkillLevel(improvingMaxMP);
        remainingAp += 5;
        if (job == MapleJob.BEGINNER) {
            // info from the odin what's working thread, thanks
            maxhp += rand(14, 16);
            maxmp += rand(10, 12);
        } else if (job.isA(MapleJob.BOWMAN) || job.isA(MapleJob.THIEF)) {
            // info from bowman forum at sleepywood, thanks guys
            maxhp += rand(20, 24);
            maxmp += rand(14, 16);
        } else if (job.isA(MapleJob.MAGICIAN)) {
            // made up
            maxhp += rand(10, 14);
            maxmp += rand(20, 24);
        } else if (job.isA(MapleJob.WARRIOR)) {
            // made up
            maxhp += rand(22, 26);
            maxmp += rand(4, 7);
        } else if (job.isA(MapleJob.GM)) {
            maxhp += rand(1000, 3000);
            maxmp += rand(1000, 3000);
        }

those are the hp/mp gains for every level up for each job ( idk about the gm one o.O ). Edit them as you wish just don't make it like 500000001337 or something :O.
Also explore the file as you would find lots of tweaks inside :D. Hope this helped and idk if this was made or not o.O.
 
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

Isn't that a bit too obvious?
People already knew about this but... I wouldn't use it unless you like ruining fun really fast
 
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

blahh theres some noobs who don't know lol o-O they just get things from repacks and say omg how cool 32k max hp yayaya i wish i knew how to do that :O so proooo
 
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

It's ironic how half of you spend all day on this forum calling people noobs when you wouldn't have a clue about anything without reading guides and asking questions. Grow up.
 
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

Wow, i knew this ages ago
 
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

Very obvious for anyone who's actually ever looked at MapleCharacter.java or compiled. Anyways, you didn't tell the "noobs" and it looks like you're directing this guide to them, WHAT to edit.
Fail less please =[
 
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

nah i didnt take this i just looked at it and said what to edit u noobs...
 
Back