19.12.2015, 00:21
(
Последний раз редактировалось Lуs; 19.12.2015 в 09:47.
)
Eu procurei na board algo a respeito mas nгo encontrei, fikei curioso em tentar fazer e sabia q n ia conseguir mas tentei, ficou mais ou menos isso:
Alguйm tem sugestхes para melhorar o code?
OBS: esse nгo funciona rsrs
PHP код:
CMD:desp(playerid, params[])
{
new string[128];
//new despp;
new g_h, g_m, g_s;
gettime(g_h, g_m, g_s);
new hour;
new minu;
new sec;
new ano, mes, dia;
getdate(dia, mes, ano);
if(sscanf(params, "iii", hour, minu, sec)) return SendClientMessage(playerid, -1, "USAGE: /desp [hour] [min] [sec]");
format(string, sizeof(string), "selecionado: %02d:%02d:%02d", hour, minu, sec);
SendClientMessage(playerid, -1, string);
format(string, sizeof(string), "sгo: %02d:%02d:%02d", g_h, g_m, g_s);
SendClientMessage(playerid, -1, string);
if(g_h == hour && g_m == minu && g_s == sec)
{
format(string, sizeof(string), "sгo: %02d:%02d:%02d", g_h, g_m, g_s);
SendClientMessage(playerid, -1, string);
}
return 1;
}
OBS: esse nгo funciona rsrs