Stop Gaining Sp after Rebirth

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jun 24, 2008
Messages
63
Reaction score
7
This was a request by darkdayz its very simple.

First find in MapleCharacter.java

PHP:
if (job != MapleJob.BEGINNER) {
			remainingSp += 3;
			statup.add(new Pair<MapleStat, Integer>(MapleStat.AVAILABLESP, Integer.valueOf(remainingSp)));
		}

Change it to

PHP:
if ((job != MapleJob.BEGINNER) && (getReborns() < 1)) {
			remainingSp += 3;
			statup.add(new Pair<MapleStat, Integer>(MapleStat.AVAILABLESP, Integer.valueOf(remainingSp)));
		}

There, save and compile and you no longer get sp after you've reborn.

*note: This was made for airfl0ws real reborn.
 
Re: [Release]Stop Gaining Sp after Rebirth

skill max npc does all the job

:\
So you might as well code sp out of the entire game then if your just gonna let people be full fledged in there skills at the first lvl :\

I guess im just unique in the fact that i want an mmorpg with real character development? :\
taking out the choice of skills is ... such a big part gone from the game...
And automatic FA on archers? :\
I know alot of archers in GMS who would never even touch FA.
 
Re: [Release]Stop Gaining Sp after Rebirth

I dunno :\
Im not saying this isnt useful for skill maxed servers.
Just saying its useless for char dev servers.

And saying that chosing skills was one of the most funnest part of maple :\ Like when you know your build is good, you start to feel good. :P
But o well.
 
Re: [Release]Stop Gaining Sp after Rebirth

Skill adding NPCs are just about necesary for rebirths assuming you have more than 1.
 
Re: [Release]Stop Gaining Sp after Rebirth

I asked kirbyhood if this would work or not because people were having problems with "Lacking level 1 or 2 skills" after few rebirths. So I added a skill maxer that maxes players' skills if they hav done 5 or more rebirths. Hence, there was no use for gaining sp after maxing skills.

Thank you kirbyhood :D
If you dont need it, don't use it :P there's no reason for flaming a person who wants to help others
 
Status
Not open for further replies.
Back