01.05.2014, 22:21
pawn Код:
new tax = CalculateTax(totalpay, WageTaxPercentage);
taxtotal = totalpay - tax;
pawn Код:
format(string, sizeof(string), "Total Tax Deduction at %.1f%%%%: $%d (Money Transferred to your bank account)",WageTaxPercentage, AddCommas(taxtotal));//line to display
SendClientMessage(playerid, 0xFFFF90FF, string);
pawn Код:
CalculateTax(amount, Float:percentage)
return (amount / 100) * (_:percentage);