It seems like it only occurs for operations at one decimal place.
PHP Code:
//#CLIENTSIDE
function onCreated() {
// Work Fine
temp.a = 0.001;
temp.b = 24;
echo(temp.a * temp.b);
temp.a = 0.01;
echo(temp.a * temp.b);
// Broken
temp.a = 0.1;
echo(temp.a * temp.b);
}
On a side note, I spent most of my scripting time today making Zodiac, V6-friendly so nearly all font related things don't look messed anymore.