18.06.2011, 18:58
callbacks and functions aren't the same.
use
or
value equals the number (or array) you want to return. Use value as 1, if you dont need to return anything specific. Read on wiki the difference between stock functions and common functions
use
pawn Код:
FunctionName(parameters)
{
return value;
}
pawn Код:
stock FunctionName(parameters)
{
return value;
}