25.02.2018, 11:19
How is that a problem? You have set it to be for you only. SetPlayerTime(playerid, h, h);
If you want it to be for all players, loop trough players:
If you want it to be for all players, loop trough players:
PHP код:
for(new i=0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnectedEx(i))
{
SetPlayerTime(i, h, h);
}
}