1
2
3
4
2
3
4
10% = 0.100000001 30% = 0.300000012 60% = 0.600000024 80% = 0.800000012
Even when I set the console command @ a certain value it returns back to those values.
Prove of concept
Scripts
Game() Percentages/Floats
Game() Percentages/Floats
1

10% = 0.100000001 30% = 0.300000012 60% = 0.600000024 80% = 0.800000012
function setprec(n, p)
	return math.floor(n*10^p)/10^p
end
print(setprec(tonumber(game("mp_kickpercent")), 2))
1
