Dan(Tasanar)

Moderator
In RewardSystem.cs I know this code will affect it, sadly I am not sure how best to fix it without ruining things.

Code:
if (String.IsNullOrEmpty(tag))
                cur = 0;
            else
                cur = Utility.ToInt32(tag);

            if (level >= 6)
                max = 9 + ((level - 6) * 2);
            else
                max = 2 + level;

I want each month to only add 1 point
 
In RewardSystem.cs I know this code will affect it, sadly I am not sure how best to fix it without ruining things.

Code:
if (String.IsNullOrEmpty(tag))
                cur = 0;
            else
                cur = Utility.ToInt32(tag);

            if (level >= 6)
                max = 9 + ((level - 6) * 2);
            else
                max = 2 + level;

I want each month to only add 1 point

I would think this is all that needed.
Code:
if (String.IsNullOrEmpty(tag))
                cur = 0;
            else
                cur = Utility.ToInt32(tag);

                max = 0 + level;
 
Back