24.03.2015, 13:26
(
Последний раз редактировалось Nenzittow; 25.03.2015 в 00:29.
)
Hey guys,
I have a little problem with my time/date Textdraw.
So, as you can see, the date textdraw background is green and i want it with black color, as the time textdraw background.
Someone can help me pls?
Screen:

Code:
Sorry for the bad english, i didn't used ****** Translator
I have a little problem with my time/date Textdraw.
So, as you can see, the date textdraw background is green and i want it with black color, as the time textdraw background.
Someone can help me pls?

Screen:

Code:
pawn Код:
Date = TextDrawCreate(503.500000,4.000000,"--");
TextDrawFont(Date,3);
TextDrawLetterSize(Date,0.499999,1.800000);
TextDrawSetOutline(Date, 1);
TextDrawColor(Date,0xFFFFFFFF);
TextDrawBackgroundColor(Date, 0x000000FF);
SetTimer("settime",1000, true);
Time = TextDrawCreate(546.000000,28.000000,"--");
TextDrawFont(Time,3);
TextDrawLetterSize(Time,0.550000,1.750000);
TextDrawSetOutline(Time, 1);
TextDrawColor(Time,0xFFFFFFFF);
TextDrawBackgroundColor(Time, 0x000000FF);
SetTimer("settime",1000, true);
