07.03.2012, 20:04
pawn Код:
subtotal = benefits + rank + onlinebonus + faction;
taxtotal = subtotal / 100 * 30;
total = subtotal-taxtotal;
You could also use this:
pawn Код:
subtotal = benefits + rank + onlinebonus + faction;
total = subtotal / 100 * 70;
pawn Код:
total = (benefits + rank + onlinebonus + faction) / 100 * 70;