Hello everyone I was wondering if there was a way to cut the rate of the amount of tokens drop? I was looking at the script and I think it is beyond what I know.
 
I find this In the GiveTokens section [approx line# 567]:
Code:
    int i_TokReward = ((int)d_TempTokReward); //set the reward you'll actually get as half then the temp reward.
            i_TokReward = Utility.RandomMinMax((int)(i_TokReward*0.4), (int)(i_TokReward*0.5));
            if (i_TokReward < 1)
                i_TokReward = 1; //set minimum reward to 1
                            
            RewardTokens(m, i_TokReward);
There are multipliers here you can raise, and a minimum token drop.
You can test the results of manipulating these numbers, I suggest increasing in increments of .1 to the multipliers and test the results; if you wish to make the minimum token drop more then increase it as well.
 
Back