22.07.2012, 03:02
Olб Galera, Estou com uma Duvida, queria Colocar meu Relogio, Dentro de uma Cor e Fora de Outra. eu Sei Onde Esta o Relogio. Por Favor Ajuda ae!!!
Obg!!!
Obg!!!
exemplo = TextDrawCreate(532.000000,435.000000,"texto");
TextDrawFont(exemplo,1);
TextDrawColor(exemplo,0xAA3333AA);
TextDrawLetterSize(exemplo,0.599999,1.000000);
TextDrawSetOutline(exemplo,1);
TextDrawSetShadow(exemplo,1);
TextDrawSetProportional(exemplo,1);
TextDrawBackgroundColor(exemplo,0x000000ff);
public reloginho(){
SyncTime();
new
string[256],
ano,
mes,
dia,
horas,
minutos,
segundos; //Relogio EBN
getdate(ano, mes, dia);gettime(horas, minutos, segundos);
format(string, sizeof string, "~y~~h~~h~~h~%d/%s%d/2012", dia, ((mes < 10) ? ("0") : ("")), mes);TextDrawSetString(Reloginho1, string);
format(string, sizeof string, "~y~~h~~h~~h~%s%d:%s%d:%s%d", (horas < 10) ? ("0") : (""), horas, (minutos < 10) ? ("0") : (""), minutos, (segundos < 10) ? ("0") : (""), segundos);TextDrawSetString(Reloginho2, string);
TextDrawShowForAll(Reloginho1);TextDrawShowForAll(Reloginho2);}
TextDrawBackgroundColor(Reloginho2, COR);
Ok Vo Tentar, mas eu mudo a cor assim ~b~ e tal. o codigo onde mudo e esse, mas tem uma parte onde mexe no text draw vo tentar aki, Obrigado Pelas Respostas
|
public reloginho()
{
SyncTime();
new string[128],
ano,
mes,
dia,
horas,
minutos,
segundos; //Relogio EBN
getdate(ano, mes, dia);gettime(horas, minutos, segundos);
format(string, sizeof string, "~y~~h~~h~~h~%d/%s%d/2012", dia, ((mes < 10) ? ("0") : ("")), mes);
TextDrawSetString(Reloginho1, string);
format(string, sizeof string, "~y~~h~~h~~h~%s%d:%s%d:%s%d", (horas < 10) ? ("0") : (""), horas, (minutos < 10) ? ("0") : (""), minutos, (segundos < 10) ? ("0") : (""), segundos);
TextDrawSetString(Reloginho2, string);
TextDrawShowForAll(Reloginho1);
TextDrawShowForAll( Reloginho2);
return 1;
}