Profiler result's -Optimization mode
#4

Quote:
Originally Posted by AmigaBlizzard
View Post
I can get why you want to kick cheaters fast, but using OnPlayerUpdate is overkill.
This callback is called at least 30 times per second FOR EVERY PLAYER.
If you have 250 players online, you're executing OnPlayerUpdate 7500 times or more every second.

It won't hurt your server when you just transfer all that code to a 1-second timer.
Then that code runs 250 times per second, which is more than enough.
Using OnPlayerUpdate as a timer is not an overkill but, a very big mistake.
I've kept my anti cheat timer to call every 1.5~2 seconds.

So for say, my timer will call 2 times in 3 seconds instead of 3. It may not make a very big difference, so why put unnecessary load?

Quote:
Originally Posted by AmigaBlizzard
View Post
Optimization starts with clearing OnPlayerUpdate.
I never used that callback and I never will, because I can see no reason for any code that needs to run 30 times per second.
The only reason why anyone will use it is when they're making an Anti AFK system, since OnPlayerUpdate is not called when they are paused.

---

@OP: You can also use GetServerTickRate when you've lots of players in the daytime and let us know of the result.

PHP Code:
CMD:tickrate(playerid)
{
    new 
str[25];
    
format(strsizeof str"Server tickrate: %d."GetServerTickRate());
    
SendClientMessage(playeridCOLOR_GREYstr);
    return 
1;

Reply


Messages In This Thread
Profiler result's -Optimization mode - by GospodinX - 28.02.2018, 10:21
Re: Profiler result's -Optimization mode - by GospodinX - 28.02.2018, 13:13
Re: Profiler result's -Optimization mode - by AmigaBlizzard - 08.06.2018, 18:36
Re: Profiler result's -Optimization mode - by Logic_ - 08.06.2018, 21:25
Re: Profiler result's -Optimization mode - by GospodinX - 21.10.2018, 15:34
Re: Profiler result's -Optimization mode - by GospodinX - 21.10.2018, 19:02

Forum Jump:


Users browsing this thread: 1 Guest(s)