03.11.2012, 18:23
Entгo gente, meu ъltimo problema que tenho, entгo..
Esse comando:
Ele pega o horбrio do host, que й americano, ou seja, se agora й 16h42, lб ainda й 13h42, como arrumar isto?
Quero deixar o horбrio brasileiro mesmo. xD
Esse comando:
PHP Code:
if(strcmp(cmd, "/horas", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new mtext[20];
getdate(year, month, day);
if(month == 1) { mtext = "Janeiro"; }
else if(month == 2) { mtext = "Fevereiro"; }
else if(month == 3) { mtext = "Marco"; }
else if(month == 4) { mtext = "Abril"; }
else if(month == 5) { mtext = "Maio"; }
else if(month == 6) { mtext = "Junho"; }
else if(month == 7) { mtext = "Julho"; }
else if(month == 8) { mtext = "Agosto"; }
else if(month == 9) { mtext = "Setembro"; }
else if(month == 10) { mtext = "Outubro"; }
else if(month == 11) { mtext = "Novembro"; }
else if(month == 12) { mtext = "Dezembro"; }
gettime(hour,minute,second);
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "%s olhou as horas no seu relуgio.", PlayerName(playerid));
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
ApplyAnimation(playerid,"COP_AMBIENT","Coplook_watch",4.1,0,0,0,0,0);
if (minute < 10)
{
if (PlayerInfo[playerid][pJailTime] > 0)
{
format(string, sizeof(string), "~y~%d %s~n~~g~|~w~%d:0%d~g~|~n~~w~Tempo De Prisao: %d seg", day, mtext, hour, minute, PlayerInfo[playerid][pJailTime]);
}
else if (PlayerInfo[playerid][pTempoHospitalizado] > 0)
{
format(string, sizeof(string), "~y~%d %s~n~~g~|~w~%d:0%d~g~|~n~~w~Tempo Hospitalizado: %d seg", day, mtext, hour, minute, PlayerInfo[playerid][pTempoHospitalizado]);
}
else
{
format(string, sizeof(string), "~y~%d %s~n~~g~|~w~%d:0%d~g~|", day, mtext, hour, minute);
}
}
else
{
if (PlayerInfo[playerid][pJailTime] > 0)
{
format(string, sizeof(string), "~y~%d %s~n~~g~|~w~%d:%d~g~|~n~~w~Tempo de Prisгo: %d seg", day, mtext, hour, minute, PlayerInfo[playerid][pJailTime]);
}
else if (PlayerInfo[playerid][pTempoHospitalizado] > 0)
{
format(string, sizeof(string), "~y~%d %s~n~~g~|~w~%d:0%d~g~|~n~~w~Tempo Hospitalizado: %d seg", day, mtext, hour, minute, PlayerInfo[playerid][pTempoHospitalizado]);
}
else
{
format(string, sizeof(string), "~y~%d %s~n~~g~|~w~%d:0%d~g~|", day, mtext, hour, minute);
}
}
GameTextForPlayer(playerid, string, 5000, 1);
}
return true;
}
Quero deixar o horбrio brasileiro mesmo. xD