Quote:
Originally Posted by SpeakDS
pawn Код:
if(strcmp(cmd, "/sethora", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USE: /sethora [hora do dia] (0-23)"); return true; } new hour2; hour2 = strval(tmp); if (PlayerInfo[playerid][pAdmin] >= 2) { SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)"); return true; } SetWorldTime(hour2); format(string, sizeof(string), " Tempo Definido Para %d Horas.", hour2); BroadCast(COLOR_GRAD1, string); } else { SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб autorizado a usar o comando!"); } } return true; }
|
eita, ctrl+v ai heim...
@Topic
Tenta ai fiz em zcmd e sscanf
pawn Код:
CMD:setarhora(playerid, params[])
{
new hora;
if(sscanf(params,"u",hora)) return SendClientMessage(playerid, -1, #Use: /setarhora [hora]);
SetWorldTime(hora);
return 1;
}