26.01.2011, 06:33
You don't see the manual game clock that is usually displayed in the upper right hand corner of the screen? If so, then you need to use the TogglePlayerClock function to enable it when the player spawns. The following code should do you wonders:
For an explanation of the function, look here: https://sampwiki.blast.hk/wiki/TogglePlayerClock
pawn Код:
public OnPlayerSpawn( playerid )
{
TogglePlayerClock( playerid, 1 );
return 1;
}