14.10.2018, 14:17
Quote:
Assuming you're just talking about the text in the corner, remove the "GameTextForPlayer" line in the command (along with any strings that were used to display the text, if you no longer want to use that text).
|
@OP, try this:
pawn Код:
CMD:time(playerid, params[])
{
new string[128], hour, minute, seconds;
gettime(hour, minute, seconds);
format(string, sizeof(string), "~g~|~w~%02d:%02d~g~|", hour, minute);
GameTextForPlayer(playerid, string, 2000, 1);
return 1;
}