Textdraw6 = TextDrawCreate(550.000000, 30.000000, "Segunda Feira");
TextDrawBackgroundColor(Textdraw6, 255);
TextDrawFont(Textdraw6, 3);
TextDrawLetterSize(Textdraw6, 0.300000, 2.000000);
TextDrawColor(Textdraw6, 383501055);
TextDrawSetOutline(Textdraw6, 1);
TextDrawSetProportional(Textdraw6, 1);
Textdraw6 = TextDrawCreate(550.000000, 30.000000, " Danniel й o mais Gostosгo do Forum SA-MP.");
TextDrawBackgroundColor(Textdraw6, 255);
TextDrawFont(Textdraw6, 3);
TextDrawLetterSize(Textdraw6, 0.300000, 2.000000);
TextDrawColor(Textdraw6, 383501055);
TextDrawSetOutline(Textdraw6, 1);
TextDrawSetProportional(Textdraw6, 1);
new string[20], dia, mes, ano;
getdate(dia, mes, ano);
format(string, sizeof(string), "%s - %s - %s", dia, mes, ano);
TextDrawSetString(Textdraw6, string);
pawn Код:
|
Danniel й o mais Gostosгo do Forum SA-MP.
Danniel й o mais Gostosгo do Forum SA-MP.
Speak Cat Fix
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,
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);