21.05.2011, 14:28
what do you mean with "you don't see the time"?
tried it like this? :
tried it like this? :
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp("/gettime", cmdtext, true, 8) == 0)
{
new h, m;
GetPlayerTimeEx(playerid, h, m);
new string[20];
format(string, sizeof(string), "%d:%d", h, m);
SendClientMessage(playerid, 0x999999AA, string);
return 1;
}
return 0;
}