17.07.2014, 20:39
Hi,
I mean is it possible to do a command that will work only between 21:00 to 8:00?
i tried that:
But this seems to not work.
Any help?
I mean is it possible to do a command that will work only between 21:00 to 8:00?
i tried that:
Код:
if(!strcmp(cmd, "/test1", true))
{
new time[3];
gettime(time[0], time[1], time[2]);
if(time[0] > 21 && time[0] < 8)
{
SendClientMessage(playerid, red, "Works.");
}
return 1;
}
Any help?


