27.04.2012, 18:53
No server aqui aparece 09:00 da manhг, sendo que na real й 16:00, nгo sei arrumar isso, alguйm me ajuda? se precisar mando print.
new hora, minuto, segundo;
gettime(hora, minuto, segundo);
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 1;
}
new hour2;
hour2 = strval(tmp);
if (PlayerInfo[playerid][pAdmin] >= 2)
{
if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1342)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return 1;
}
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 1;
}