25.06.2014, 00:32
pawn Код:
ґTextdraw6 = TextDrawCreate(550.000000, 30.000000, " "); // tanto faz o que terб aqui
TextDrawBackgroundColor(Textdraw6, 255); // o que quiser
TextDrawFont(Textdraw6, 3); // o que quiser
TextDrawLetterSize(Textdraw6, 0.300000, 2.000000); // o que quiser
TextDrawColor(Textdraw6, 383501055); // cor que quiser
TextDrawSetOutline(Textdraw6, 1); // o que quiser
TextDrawSetProportional(Textdraw6, 1); // o que quiser..
new string[20], dia, mes, ano; // criando as variбveis
getdate(dia, mes, ano); // Getando a DATA POR COMPLETO 'DIA MКS E ANO'
format(string, sizeof(string), "%s - %s - %s", dia, mes, ano); // nъmero do dia, nъmero do mкs, e o ano..
TextDrawSetString(Textdraw6, string); // Mostrando que estб setando um String na TextDrawn,
A nгo ser que vocк deixe ai assim:
pawn Код:
new string[20], dia, mes, ano;
getdate(dia, mes, ano);
new textodia[64];
if(dia== 1) { textodia = "SEGUNDA-FEIRA"; }
if(dia== 2) { textodia = "TERЗA-FEIRA"; }
if(dia== 3) { textodia = "QUARTA-FEIRA"; }
format(string, sizeof(string), "%s : %d/%d/%d", textodia ,dia, mes, ano);
TextDrawSetString(Textdraw6, string);
se dia 24 serб segunda ou terзa ou quarta ou quinta ou sexta..
e por ai vai...
para todos os dias :/
O que seria chato,
Mas eu nгo sei se existe alguma funзгo que getdate por nome nгo por nъmero..
Atenciosamente,