SA-MP Forums Archive
[HELP] Players are not updateing - 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: [HELP] Players are not updateing (/showthread.php?tid=442934)



[HELP] Players are not updateing - jeffery30162 - 09.06.2013

WEll I am creating a server and if I go on it everything seems to be ok.

If I also go on with another computer for ill have two players on at once, and I bring them close together ingame i have these crazy problems to where if im one one guy and i look at the other the paused thing will show by his name and if he walks around the guy isnt updated on the other players screen. thats the same with vehicles.


Re: [HELP] Players are not updateing - Scenario - 09.06.2013

Check to make sure you're not returning 0 under OnPlayerUpdate.


Re: [HELP] Players are not updateing - SuperViper - 09.06.2013

Make sure your OnPlayerUpdate callback returns 1. If you can't find it in your code, add the following to your script:

pawn Код:
public OnPlayerUpdate(playerid)
{
    return 1;
}



Re: [HELP] Players are not updateing - jeffery30162 - 09.06.2013

Ok I fixed it, Such a simple mistake makes a big problem