CMD:horas(playerid, params[])
{
new Hora, Minuto, Segundo;new string[1500];
gettime(Hora,Minuto,Segundo);
new Horario = gettime();
format(string, sizeof(string), "Agora sгo %d Horas %d Minutos e %d Segundos!",Hora,Minuto,Segundo);
SendClientMessage(playerid, Amarelo, string);
return 1;
}
CMD:horas(playerid,params[]) { new Hour, Minute, Second, string[50]; gettime(Hour, Minute, Second); printf("%02d:%02d:%02d", Hour, Minute, Second); format(string,sizeof(string),"Sгo %d horas %d minutos e %d segundos",Hour, Minute, Second); SendClientMessage(playerid,-1,string); return 1; }
CMD:horas ( playerid )
{
new Time [ 3 ] , string [ 128 ] ;
gettime ( Time [ 0 ] , Time [ 1 ] , Time [ 2 ] ) ;
format ( string , sizeof ( string ) , "Agora sгo %d Horas %d Minutos e %d Segundos!" , Time [ 0 ] , Time [ 1 ] , Time [ 2 ] ) ;
SendClientMessage ( playerid , 0xFF0000FF , string ) ;
return 1 ;
}
CMD:horas(playerid, params[])
{
new Hora, Minuto, Segundo, string[45];
gettime(Hora, Minuto, Segundo);
format(string, sizeof(string), "Agora sгo %02d %s, %02d %s e %02d %s!", Hora, (Hora < 2)?("Hora"):("Horas"), Minuto, (Minuto < 2)?("Minuto"):("Minutos"), Segundo, (Segundo < 2)?("Segundo"):("Segundos"));
SendClientMessage(playerid, Amarelo, string);
return 1;
}
Hora, (Hora < 2)?("Hora"):("Horas"), Minuto, (Minuto < 2)?("Minuto"):("Minutos"), Segundo, (Segundo < 2)?("Segundo"):("Segundos"));
CMD:horas(playerid)
{
new Hora, Minuto, Segundo, string[128];
gettime(Hora, Minuto, Segundo);
format(string, sizeof(string), "Agora sгo %d Horas %d Minutos e %d Segundos!", Hora, Minuto, Segundo);
SendClientMessage(playerid, Amarelo, string);
return 1;
}
Aproveitando poderia faser uma breve explicaзгo sobre isso:
pawn Код:
|
return MinhAvariavel ? true : false;
IsPlayerAdmin(playerid) ? true : (SendClientMessage(playerid, -1, "Vocк foi Kickado"), Kick(playerid), true);
CMD:horas(playerid,params[])
{
new Hour, Minute, Second, string[50], Year, Month, Day, Mes[70];
getdate(Year, Month, Day);
printf("%02d/%02d/%d", Day, Month, Year);
if(Month == 1) { Mes = "Janeiro"; }
if(Month == 2) { Mes = "Fevereiro"; }
if(Month == 3) { Mes = "Marco"; }
if(Month == 4) { Mes = "Abril"; }
if(Month == 5) { Mes = "Maio"; }
if(Month == 6) { Mes = "Junho"; }
if(Month == 7) { Mes = "Julho"; }
if(Month == 8) { Mes = "Agosto"; }
if(Month == 9) { Mes = "Setembro"; }
if(Month == 10) { Mes = "Outubro"; }
if(Month == 11) { Mes = "Novembro"; }
if(Month == 12) { Mes = "Dezembro"; }
gettime(Hour, Minute, Second);
printf("%02d:%02d:%02d", Hour, Minute, Second);
format(string,sizeof(string),"~r~%d de %s de %d~n~~r~%d:%d:%d ", Day, Mes, Year, Hour, Minute, Second);
GameTextForPlayer(playerid, string, 5000, 1);
return 1;
}
pawn Код:
pawn Код:
|
new bool:Var = true;
format(string, sizeof(string), "Var: %s", (Var)?("True"):("False"));//Var: True
Var = false;
format(string, sizeof(string), "Var: %s", (Var)?("True"):("False")); // Var: False