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!

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

my milkshake.
Joined
Aug 23, 2008
Messages
230
Reaction score
10
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.
 
Experienced Elementalist
Joined
Jul 18, 2008
Messages
232
Reaction score
0
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
 
my milkshake.
Joined
Aug 23, 2008
Messages
230
Reaction score
10
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
 
Experienced Elementalist
Joined
Jul 18, 2008
Messages
232
Reaction score
0
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

True :p
 
Mythic Archon
Loyal Member
Joined
Jul 23, 2008
Messages
796
Reaction score
56
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

lol I know where this is taken from.
Yeah the GM one works actually
 
Junior Spellweaver
Joined
Sep 2, 2008
Messages
104
Reaction score
11
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.
 
Banned
Banned
Joined
Aug 16, 2008
Messages
102
Reaction score
0
Re: [Guide/Release] How to edit hp/mp on level up for all jobs.

Wow, i knew this ages ago
 
Experienced Elementalist
Joined
Jul 1, 2008
Messages
270
Reaction score
0
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 =[
 
my milkshake.
Joined
Aug 23, 2008
Messages
230
Reaction score
10
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
Top