Solution for anyone interested:
Code:
new Float:sDonativo = 3.0
new Float:teste = sDonativo * 74 / 100
colorchat(0, id, "%.2f", teste)
Start the equation with a float, otherwise it will calculate 74 / 100 as integers, which will return 0.
And 0 * anything = 0.
__________________