fixes.inc - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: fixes.inc (
/showthread.php?tid=665136)
fixes.inc -
m4karow - 23.03.2019
Hey there
I've noticed my FIXES_OnPlayerUpdate returning 0. I've put debug code where it have
return 0; but it's not printed.
This is the default code:
Code:
return FIXES_OnPlayerUpdate(playerid);
I changed to this:
Code:
new ret = FIXES_OnPlayerUpdate(playerid);
printf("FIXES_OnPlayerUpdate %i", ret);
return ret;
And this is the output:
Code:
FIXES_OnPlayerUpdate 0
How I can find out why is it desyncing?
Re: fixes.inc -
m4karow - 24.03.2019
bump