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
Re: Badge Point Limit Fix R63
Thanks, I asked many friends for it and you gave it. This deserves a like.