Badge Point Limit Fix R63

Results 1 to 2 of 2
  1. #1
    Account Upgraded | Title Enabled! wichard is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    649Posts

    Badge Point Limit Fix R63

    Hello people,

    For the new Achievement-system badges has his own limit.

    You need to serailize them.

    THIS IS NOT A CODED PICE You have to do it yourself.
    Code:
    HeaderId = 627
    Generate a Dictionary with these data per item: { BadgeCode, Dictionary<int, int> Levels with limits } 
    
    How to go further?
    
    foreach (keyvaluepair<string, dictionary<int, int>> kvp in Dictionary)
    {
       Append(kvp.key);
       foreach(keyvaluepair<int, int> _kvp in kvp.value)
       {
         Append(_kvp.key);
         Append(_kvp.value);
       }
    }
    Then you will have the limits on the badge descriptions ;D


  2. #2
    Account Upgraded | Title Enabled! George2000 is offline
    MemberRank
    Jul 2011 Join Date
    The NetherlandsLocation
    1,150Posts

    Re: Badge Point Limit Fix R63

    Thanks, I asked many friends for it and you gave it. This deserves a like.



Advertisement