29.07.2009, 20:49
You can return floats by adding the Float tag to the function name.
pawn Код:
//incorrect:
stock ReturnFloat()
return 1.23456;
//correct:
stock Float:ReturnFloat()
return 1.23456;

