Fix badges in R63

Page 2 of 2 FirstFirst 12
Results 16 to 24 of 24
  1. #16
    Ultra Light Beam Makarov is offline
    MemberRank
    Apr 2010 Join Date
    GothamLocation
    3,622Posts

    Re: Fix badges in R63

    Quote Originally Posted by ghostrevan View Post
    cant find the BadgeComponent.cs im using pphoenix
    Give up, Brohan

  2. #17
    Account Upgraded | Title Enabled! ghostrevan is offline
    MemberRank
    Jul 2007 Join Date
    257Posts

    Re: Fix badges in R63

    Give up, Brohan???
    why is that?

    can someone help me plz
    where do i find badgecomponent

  3. #18
    this is title Shredinator is offline
    MemberRank
    May 2011 Join Date
    399Posts

    Re: Fix badges in R63

    Seriously, give up.

  4. #19
    Account Upgraded | Title Enabled! ghostrevan is offline
    MemberRank
    Jul 2007 Join Date
    257Posts

    Re: Fix badges in R63

    dude im just asking for help and your saying seriously, give up uuhm? what help is that.... just give me an answer to my question please?
    is it only for uber or can i use it for phoenix too?
    and where do i find the file.

  5. #20
    What about no. Davidaap is offline
    MemberRank
    Nov 2009 Join Date
    773Posts

    Re: Fix badges in R63

    Phoenix = closed scource = not editable so fuck off

  6. #21
    Account Upgraded | Title Enabled! ghostrevan is offline
    MemberRank
    Jul 2007 Join Date
    257Posts

    Re: Fix badges in R63

    okej srry :/

  7. #22
    Enthusiast Haninha is offline
    MemberRank
    Jul 2011 Join Date
    25Posts

    Re: Fix badges in R63

    thanks for this, helps a lot of users!

  8. #23
    Account Upgraded | Title Enabled! wichard is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    649Posts

    Re: Fix badges in R63

    Better to use this:

    Code:
            internal ServerMessage Serialize()
            {
                var EquippedBadges = new List<Badge>();
    
                ServerMessage Message = new ServerMessage(229);
                Message.AppendInt32(Count);
    
                foreach (Badge Badge in Badges)
                {
                    Message.AppendInt32(-1);
                    Message.AppendStringWithBreak(Badge.Code);
    
                    if (Badge.Slot > 0)
                    {
                        EquippedBadges.Add(Badge);
                    }
                }
    
                Message.AppendInt32(EquippedBadges.Count);
    
                foreach (Badge Badge in EquippedBadges)
                {
                    Message.AppendInt32(Badge.Slot);
                    Message.AppendStringWithBreak(Badge.Code);
                }
    
                return Message;
            }

  9. #24
    Apprentice ali2o is offline
    MemberRank
    Nov 2008 Join Date
    6Posts

    Re: Fix badges in R63

    doesnt work man



Page 2 of 2 FirstFirst 12

Advertisement