29.07.2015, 10:04
Just make callback OnPlayerSpawn like this
As I can see you are showing the textdraws on player spawn, but the timer is OnFilterScriptInit that means that the textdraws will get updated on player's connect, also you get server's time and not each GMT's time
Код:
public OnPlayerSpawn(playerid) { TextDrawShowForPlayer(playerid, ServerDate); TextDrawShowForPlayer(playerid, ServerTime); return 1; }