21.01.2017, 18:07
Instead of
use
The last two arguments are
1. What type of data you want to transfer.
2. The data.
In this case you want to transfer an Integer (i or d) which is the player id (playerid)
The wiki page will have more information about it.
Код:
SetTimerEx("HideGameTextTime", 1000, 1, "d", "d");
Код:
SetTimerEx("HideGameTextTime", 1000, 1, "d", playerid);
1. What type of data you want to transfer.
2. The data.
In this case you want to transfer an Integer (i or d) which is the player id (playerid)
The wiki page will have more information about it.