Quote:
Originally Posted by SacrificeGaming
Код:
if(PlayerInfo[i][pConnectSeconds] >= 3600)
- This is 60 minutes that means you get the paycheck every hour.
to change the paycheck you have to
you have to play with the "100" after the
PHP код:
else if(PlayerInfo[i][pNation] == 1)
{
format(string, sizeof(string), " Paycheck: $%s | TR Gov Tax: $%s (%d phan tram)", number_format(PlayerInfo[i][pPayCheck]), number_format((PlayerInfo[i][pPayCheck] / 100) * TRTaxValue), TRTaxValue);
PlayerInfo[i][pAccount] -= (PlayerInfo[i][pPayCheck] / 100) * TRTaxValue;
TRTax += (PlayerInfo[i][pPayCheck] / 100) * TRTaxValue;
}
SendClientMessageEx(i, COLOR_GRAD1, string);
interest = (PlayerInfo[i][pAccount] + 1) / 1000
you also need to change the intrest rate from 1000 to 100 if you want to change it rate is not as I can see 100,000 and you get 1,000 intrest
* is the value so try to change the 100 to 200
|
I tried change 1000 to 100, but still not