01.06.2012, 10:06 
	
	
	
		It works if you remove those from float.inc, I'm not sure why they are forbidden.
Running this code outputs a float of 0.0:
So I guess it just isn't supported.
	
	
	
	
Running this code outputs a float of 0.0:
pawn Код:
#include <a_samp>
public OnFilterScriptInit()
{
new Float:fvar = 123.0;
new Float:fmod = fvar % 60.0;
printf("%f", fmod);
return 1;
}


