Gamigo character info parse

Results 1 to 5 of 5
  1. #1
    Valued Member Riko is offline
    MemberRank
    Sep 2009 Join Date
    105Posts

    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...


  2. #2
    Enthusiast RiotPoints is offline
    MemberRank
    Jan 2013 Join Date
    28Posts

    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++;
                        }
                    }
                }

  3. #3
    Valued Member Riko is offline
    MemberRank
    Sep 2009 Join Date
    105Posts

    Re: Gamigo character info parse

    Quote Originally Posted by RiotPoints View Post
    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?

  4. #4
    Enthusiast RiotPoints is offline
    MemberRank
    Jan 2013 Join Date
    28Posts

    Re: Gamigo character info parse

    nothing... I was out of my mind. Listen to the sound of Africa. It will take you far

  5. #5
    Valued Member Riko is offline
    MemberRank
    Sep 2009 Join Date
    105Posts

    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
    Last edited by Riko; 16-05-16 at 01:12 AM.



Advertisement