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!

Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

Status
Not open for further replies.
Skilled Illusionist
Joined
Apr 12, 2008
Messages
397
Reaction score
0
I saw lots of server's were having this problem and i don't really know exactly how to fix it because i know that is like hard core written into the client.

But i modify'd my rebirth script so now you don't get that message.
I wasn't gonna release cuz i didn't think it was big but some people said they wanted it so here a go.
No credits to me, scripts aren't mine, just combined them.



All you have to do is put it in the npc folder and it works

Report any bugs/glitch's/uncomplete parts here please.
 
Junior Spellweaver
Joined
Jun 5, 2008
Messages
138
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

I have the perm fix, I released on numerous post's but nobody wanted to listen. This really is no fix but good release.
 
Skilled Illusionist
Joined
Apr 12, 2008
Messages
397
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

I never saw your release....

Sorry )=
 
Newbie Spellweaver
Joined
Jun 8, 2008
Messages
17
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

For anyone wondering what BrooklynMan said...

The real way to fix this error permantly is to go to NPCConversationManager, and add this code at the bottom

public void setSP(int SP) {
getPlayer().setRemainingSp(SP);
getPlayer().updateSingleStat(MapleStat.AVAILABLESP, Integer.valueOf(SP));
}

Before the last "}". When you add this command, go to your rebirth NPC script and add cm.setSP(0);

What this does is that the NPC will now set the characters SP to 0 before the reborn so they dont get bugged.

P.S. TheRealEpic, your "fix" is not a way to solve this problem, your way is to avoid it forever.

HOPE I HELPED.
 
Junior Spellweaver
Joined
Jun 5, 2008
Messages
138
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

Nice Lamok. That is it. *Pst*Dont tell anybody guys*Pst*
 
Junior Spellweaver
Joined
Apr 18, 2008
Messages
109
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

I saw lots of server's were having this problem and i don't really know exactly how to fix it because i know that is like hard core written into the client.

But i modify'd my rebirth script so now you don't get that message.
I wasn't gonna release cuz i didn't think it was big but some people said they wanted it so here a go.
No credits to me, scripts aren't mine, just combined them.



All you have to do is put it in the npc folder and it works

Report any bugs/glitch's/uncomplete parts here please.

Thanks For this Now Zander.. Lolz People are getting this on Eep
 
Skilled Illusionist
Joined
Apr 12, 2008
Messages
397
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

How'd i know =x
 
Skilled Illusionist
Joined
May 12, 2008
Messages
321
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

When you use an NPC, you can't set the HP/MP to 50/50, can you? :eek:
 
Master Summoner
Loyal Member
Joined
Apr 27, 2008
Messages
596
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

No point for a TEMP fix.
 
Skilled Illusionist
Joined
Apr 12, 2008
Messages
397
Reaction score
0
Re: [Release] Temp fix for "Lackin 1 and/or 2 skills" error w/ rebirth

What this is a rebirth script + skill maxer all in one -.-

If you don't want lvl 10's and 8's having maxed skills then this is good...

I don't want that so i made this...
 
Status
Not open for further replies.
Back
Top