Your stock needs a float tag and its case sensitive, so it MUST be "Float".
EDIT: this seems to work, returns 4.168393
Code:
Float:get_float_ab()
{
return (a + 0.0) / (b + 0.0)
}
EDIT #2: It works (a / b = 4.168393) even without Float: tag but it gives out a tag mismatch on compile.
__________________