How do I get something like this:
$game_variables[409] =
(($game_variables[408] * 11) /
$game_variables[410]) * 100
to work without the program totally screwing up the decimals?
for example, if var[408] is 10,
and var[410] is 120, I should get something that looks like 110/120 = 0.916...
that then gets converted into a percentage like 91.6%
obviously that's not what XP is doing, since it likes whole numbers.