15.07.2013, 15:22
Quote:
And you assign nothing to "time". Sscanf or even isnull + isnumeric would be useful for that command.
People must understand that using strcmp to compare string for commands is not an efficient way and it's slow/outdated, strtok too. |
pawn Код:
CMD:setmytime(playerid, params[])
{
new string1[128]; new time;
if(sscanf(params, "i", time))
{
SendClientMessage(playerid, COLOR_GREY, "Usage: /setmytime [Time(Hour)");
SendClientMessage(playerid, COLOR_PINK, "Function: Will set your Time");
}
SetPlayerTime(playerid, time, 0);
format(string1, sizeof(string1), "His time has Changed to: %d:00", time);
SendClientMessage(playerid, -1, string1);
return 1;
}