SA-MP Forums Archive
How do I remove this clock? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How do I remove this clock? (/showthread.php?tid=222141)



How do I remove this clock? - styl3raaa - 06.02.2011

How do I remove the clock from the game and leave it as admin system to time the server?


Re: How do I remove this clock? - [03]Garsino - 06.02.2011

https://sampwiki.blast.hk/wiki/TogglePlayerClock


Re: How do I remove this clock? - styl3raaa - 06.02.2011

Add code after OnGameModeInit and crashed my program pawno


Re: How do I remove this clock? - [03]Garsino - 06.02.2011

pawn Код:
public OnPlayerConnect(playerid)
{
    TogglePlayerClock(playerid, false); // Disable the clock
    return 1;
}



Re: How do I remove this clock? - styl3raaa - 06.02.2011

Thank you!