02.01.2014, 03:21
How does it return false/0? Try the code below and it returned fine, without using return true/1 or return false/0, it does it job, anyways I'm always trying to improve my skills in PAWN that is why I like people criticising me, but I don't take disrespectful stuff, like you did in Useful function section.
pawn Код:
#include <a_samp>
new var;
main()
{
SetTimer("Callback", 1000, true);
return var = 1;
}
forward Callback();
public Callback()
{
return printf("%i", var);
}