Gamigo character info parse
Hello,
I encounterd an issue while parsing the packets regarding character info from Gamigo. I'm unable to locate the packets that hold the craft EXP value. Is there anyone who can give me a hint where it could be?
I tried to search for the actual value shown ingame already but dont get any matches...
Re: Gamigo character info parse
Code:
ushort count = 0;
for (var i = 0; i < craftingExp.Count; i++)
{
for (var j = 0; j <= craftingExp[i].GetUpperBound(0); j++)
{
for (var k = 0; k < 6; k++)
{
if (craftingExp[i][j, k] == "-") continue;
count++;
}
}
}
Re: Gamigo character info parse
Quote:
Originally Posted by
RiotPoints
Code:
ushort count = 0;
for (var i = 0; i < craftingExp.Count; i++)
{
for (var j = 0; j <= craftingExp[i].GetUpperBound(0); j++)
{
for (var k = 0; k < 6; k++)
{
if (craftingExp[i][j, k] == "-") continue;
count++;
}
}
}
wth does that have to do with packets? is posting random code a thing these days?
Re: Gamigo character info parse
nothing... I was out of my mind. Listen to the sound of Africa. It will take you far
Re: Gamigo character info parse
After listening to the sound of africa I finally figured it out.
The thing is you need to count all the achieved EXP by each craft skill together in order to get ur total EXP.
Packet is 0x103D. It's the fourth ushort after skillID