08.02.2019, 14:41
Hey, me again.
I just encountered a weird thing on my server. It doesn't matter if they're driving or walking, they appear to be pausing on my screen but on their own, they're not pausing. You can see it Here. (in this, they're actually driving but to me they're stationary and paused). This affects players and causes multiple problems. The only code I added recently was:
Does OnPlayerUpdate have anything to do with that because it is called when the player moves? Thanks in advance.
I just encountered a weird thing on my server. It doesn't matter if they're driving or walking, they appear to be pausing on my screen but on their own, they're not pausing. You can see it Here. (in this, they're actually driving but to me they're stationary and paused). This affects players and causes multiple problems. The only code I added recently was:
Код:
public OnPlayerUpdate(playerid) { new WantedLevel; WantedLevel = GetPlayerWantedLevel(playerid); if (WantedLevel > 0) { new Text3D:PlayerLabel[MAX_PLAYERS]; PlayerLabel[playerid] = CreateDynamic3DTextLabel("test", COLOR_RED, 0.0, 0.0, 0.5, 40.0, playerid); } }