15.11.2011, 13:17
sim, e ainda tentei arrumar a callback
pawn Код:
public Relogio(playerid)
{
new Mes,Dia,Hora,Minuto,Segundo;
getdate(Mes, Dia);
gettime(Hora,Minuto,Segundo);
new Reloginho1[50];
new Reloginho2[50];
if(Minuto == 01)
{
SendClientMessage(playerid, -1, "Hora Do Pagamento");
return 0;
}
if(Mes == 1) { String = "Janeiro"; }
else if(Mes == 2) {String = "Fevereiro";}
else if(Mes == 3) {String = "Marзo";}
else if(Mes == 4) {String = "Abril";}
else if(Mes == 5) {String = "Maio";}
else if(Mes == 6) {String = "Junho";}
else if(Mes == 7) {String = "Julho";}
else if(Mes == 8) {String = "Agosto";}
else if(Mes == 9) {String = "Setembro";}
else if(Mes == 10) {String = "Outubro";}
else if(Mes == 11) {String = "Novembro";}
else if(Mes == 12) {String = "Dezembro";}
format(Reloginho1, sizeof(Reloginho1), "%d de %s", Dia, String);
TextDrawSetString(Textdraw6, Reloginho1);
TextDrawShowForPlayer(playerid, Textdraw6);
format(Reloginho2, sizeof(Reloginho2), "%d:%d:%d", Hora, Minuto, Segundo);
TextDrawSetString(Textdraw7, Reloginho2);
TextDrawShowForPlayer(playerid, Textdraw7);
return 1;
}