07/11/2022 06:58
(05/11/2022 20:23)RamossFx Escreveu: Então, fiz isso ai abaixo mas por algum motivo não esta funcionando, alguém vê algum motivo aparente? Desde ja agradeço.
Código:stock escrever_log(const log_type[], const log_text[]){
new str[256], day, month, year, hour, minute, second;
new query[56 + 15];
gettime(hour, minute, second);
getdate(year, month, day);
format(str, sizeof(str), "[%02i/%02i/%04i - %02i:%02i:%02i]", day, month, year, hour, minute, second);
format(query, sizeof(query), "INSERT INTO `%s` (`data_log`, `log`) VALUES ('%s', '%s')", log_type, str, log_text);
mysql_tquery(connect_sql, query);
return 1;
}
Outra coisa que você deveria usar é o gettime. É mais simples e eficaz. Ele te dá um valor Timestamp
Depois para informar ao jogador datas e horas te recomendo esta função:
Código PHP:
stock convertTimestamp( timestamp, _form=0 )
{
timestamp -= 10800;
new year=1970, day=0, month=0, hour=0, mins=0, sec=0;
new days_of_month[12] = { 31,28,31,30,31,30,31,31,30,31,30,31 };
new names_of_month[12][10] = {"Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"};
new returnstring[32];
while(timestamp>31622400){
timestamp -= 31536000;
if ( ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0) ) timestamp -= 86400;
year++;
}
if ( ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0) )
days_of_month[1] = 29;
else
days_of_month[1] = 28;
while(timestamp>86400){
timestamp -= 86400, day++;
if(day==days_of_month[month]) day=0, month++;
}
while(timestamp>60){
timestamp -= 60, mins++;
if( mins == 60) mins=0, hour++;
}
sec=timestamp;
switch( _form ){
case 1: format(returnstring, 31, "%02d/%02d/%d %02d:%02d:%02d", day+1, month+1, year, hour, mins, sec);
case 2: format(returnstring, 31, "%s %02d, %d, %02d:%02d:%02d", names_of_month[month],day+1,year, hour, mins, sec);
case 3: format(returnstring, 31, "%d %c%c%c %d, %02d:%02d", day+1,names_of_month[month][0],names_of_month[month][1],names_of_month[month][2], year,hour,mins);
case 4: format(returnstring, 31, "%02d.%02d.%d-%02d:%02d:%02d", day+1, month+1, year, hour, mins, sec);
case 5: format(returnstring, 31, "%02d/%02d/%d", day+1, month+1, year);
case 6: format(returnstring, 31, "%02d:%02d:%02d", hour, mins, sec);
default: format(returnstring, 31, "%02d:%02d:%02d %02d/%02d/%d", hour, mins, sec, day+1, month+1, year);
}
return returnstring;
}