29.02.2016, 16:44
I am pretty sure that my server isn't lagging because of timers (i killed all timers with a command and same server ticks - 70 / 80) or mysql database, my server is lagging because something else and i can't figure it out?
What public functions can lag the server? At 500/500 i have 60-70 server ticks.
The only thing that i have at OnPlayerUpdate is this thing ( could this affect ? ) :
Thanks.
What public functions can lag the server? At 500/500 i have 60-70 server ticks.
The only thing that i have at OnPlayerUpdate is this thing ( could this affect ? ) :
pawn Код:
if(gettime() > GetPVarInt(playerid, "TutTick") && GetPVarInt(playerid, "TutTick") != 0)
{
SetPVarInt(playerid, "TutTick", 0);
TutorialShow(playerid, GetPVarInt(playerid, "TutStep"));
}