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!

Rev008 Fix for 4th JOB error - Error with logging char with 4th job skills

Status
Not open for further replies.
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
83
Reaction score
0
- PlayerPacket.CPP -

Add :
Code:
#include "SkillsPacket.h"

--

Deleted these 5 lines :
Code:
packet.addShort(player->skills->getSkillsNum());
for(int i=0; i<player->skills->getSkillsNum(); i++){
packet.addInt(player->skills->getSkillID(i));
packet.addInt(player->skills->getSkillLevel(player->skills->getSkillID(i)));
}

Replace with :
Code:
packet.addShort(0);

---

Find :
Code:
packet.addBytes("FFC99A3B");
packet.addInt64(Server::getServerTime());
packet.packetSend(player);

Add this below :
Code:
for(int i=0; i<player->skills->getSkillsNum(); i++){
SkillsPacket::addSkill(player, player->skills->getSkillID(i), player->skills->getSkillLevel(player->skills->getSkillID(i)));
}
 
Last edited:
Newbie Spellweaver
Joined
Apr 14, 2008
Messages
37
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

What about credit to the original script maker?
 
Newbie Spellweaver
Joined
Apr 23, 2008
Messages
9
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

It not work for me :s
 
Newbie Spellweaver
Joined
Apr 18, 2008
Messages
8
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

not work for me too
 
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
83
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

try again ? It's working for me :)
 
Junior Spellweaver
Joined
Apr 25, 2007
Messages
100
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

it gives me loads of erros doesnt work
 
Newbie Spellweaver
Joined
Aug 10, 2007
Messages
27
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

i dont know if its leeching protection, or jobs a mistake, but anyway,
u add unnecessary "{" in this code:
Code:
for(int i=0; i<player->skills->getSkillsNum(); i++){
SkillsPacket::addSkill(player, player->skills->getSkillID(i), player->skills->getSkillLevel(player->skills->getSkillID(i)));


anyway, should look like this:
Code:
for(int i=0; i<player->skills->getSkillsNum(); i++)
SkillsPacket::addSkill(player, player->skills->getSkillID(i), player->skills->getSkillLevel(player->skills->getSkillID(i)));

^^
 
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
83
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

it's
Code:
for(int i=0; i<player->skills->getSkillsNum(); i++){
SkillsPacket::addSkill(player, player->skills->getSkillID(i), player->skills->getSkillLevel(player->skills->getSkillID(i)));
}

instead of
Code:
for(int i=0; i<player->skills->getSkillsNum(); i++){
SkillsPacket::addSkill(player, player->skills->getSkillID(i), player->skills->getSkillLevel(player->skills->getSkillID(i)));

my mistake .
 
Experienced Elementalist
Joined
Apr 13, 2008
Messages
211
Reaction score
0
Re: [Rev008] Fix for 4th JOB error 38 - Error with logging char with 4th job skills

it's
Code:
for(int i=0; i<player->skills->getSkillsNum(); i++){
SkillsPacket::addSkill(player, player->skills->getSkillID(i), player->skills->getSkillLevel(player->skills->getSkillID(i)));
}
instead of
Code:
for(int i=0; i<player->skills->getSkillsNum(); i++){
SkillsPacket::addSkill(player, player->skills->getSkillID(i), player->skills->getSkillLevel(player->skills->getSkillID(i)));
my mistake .
you know you can edit
lol you did
giant tnx to you for this realese!
i really ned that
 
Junior Spellweaver
Joined
Apr 8, 2008
Messages
146
Reaction score
0
Re: [Release] Rev008 Fix for 4th JOB error - Error with logging char with 4th job ski

use the original + @threadstarter dont leech other ppls things that have allready been posted on this site.
 
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
83
Reaction score
0
Re: [Release] Rev008 Fix for 4th JOB error - Error with logging char with 4th job ski

use the original + @threadstarter dont leech other ppls things that have allready been posted on this site.
dude look at the source code of rev 007 and rev 008 and you will find the difference.
 
Newbie Spellweaver
Joined
Apr 13, 2008
Messages
28
Reaction score
0
Re: [Release] Rev008 Fix for 4th JOB error - Error with logging char with 4th job ski

Well it's not much of a difference and quite easy to figure out. But maybe it will prove some use to some people.
 
Status
Not open for further replies.
Back
Top