Outlines. -
Hello guys.
I was wondering if you can help me make this code a little bit better.
This is my Level System box. which is located under the money tab.
Here is the code.
Код:
EXPTD20 = TextDrawCreate(612.000000, 104.000000, "_");
TextDrawBackgroundColor(EXPTD20, 255);
TextDrawFont(EXPTD20, 1);
TextDrawLetterSize(EXPTD20, 0.500000, 1.799999);
TextDrawColor(EXPTD20, 80);
TextDrawSetOutline(EXPTD20, 0);
TextDrawSetProportional(EXPTD20, 1);
TextDrawSetShadow(EXPTD20, 1);
TextDrawUseBox(EXPTD20, 1);
TextDrawBoxColor(EXPTD20, 80);
TextDrawTextSize(EXPTD20, 494.000000, 0.000000);
TextDrawSetSelectable(EXPTD20, 0);
Re: Outlines. -
Re: Outlines. -
Re: Outlines. -
PHP код:
TDEditor_TD[0] = TextDrawCreate(506.666748, 105.844413, "box");
TextDrawLetterSize(TDEditor_TD[0], 0.000000, 2.066666);
TextDrawTextSize(TDEditor_TD[0], 581.000000, 0.000000);
TextDrawAlignment(TDEditor_TD[0], 1);
TextDrawColor(TDEditor_TD[0], -1);
TextDrawUseBox(TDEditor_TD[0], 1);
TextDrawBoxColor(TDEditor_TD[0], 102);
TextDrawSetShadow(TDEditor_TD[0], 0);
TextDrawBackgroundColor(TDEditor_TD[0], 255);
TextDrawFont(TDEditor_TD[0], 1);
TextDrawSetProportional(TDEditor_TD[0], 1);
TDEditor_TD[1] = TextDrawCreate(506.666748, 105.844413, "box");
TextDrawLetterSize(TDEditor_TD[1], 0.000000, -0.062331);
TextDrawTextSize(TDEditor_TD[1], 581.000000, 0.000000);
TextDrawAlignment(TDEditor_TD[1], 1);
TextDrawColor(TDEditor_TD[1], -1);
TextDrawUseBox(TDEditor_TD[1], 1);
TextDrawBoxColor(TDEditor_TD[1], 255);
TextDrawSetShadow(TDEditor_TD[1], 0);
TextDrawBackgroundColor(TDEditor_TD[1], 255);
TextDrawFont(TDEditor_TD[1], 1);
TextDrawSetProportional(TDEditor_TD[1], 1);
TDEditor_TD[2] = TextDrawCreate(506.666748, 125.344413, "box");
TextDrawLetterSize(TDEditor_TD[2], 0.000000, -0.062331);
TextDrawTextSize(TDEditor_TD[2], 581.000000, 0.000000);
TextDrawAlignment(TDEditor_TD[2], 1);
TextDrawColor(TDEditor_TD[2], -1);
TextDrawUseBox(TDEditor_TD[2], 1);
TextDrawBoxColor(TDEditor_TD[2], 255);
TextDrawSetShadow(TDEditor_TD[2], 0);
TextDrawBackgroundColor(TDEditor_TD[2], 255);
TextDrawFont(TDEditor_TD[2], 1);
TextDrawSetProportional(TDEditor_TD[2], 1);
TDEditor_TD[3] = TextDrawCreate(544.600402, 112.014808, "0/100");
TextDrawLetterSize(TDEditor_TD[3], 0.231000, 0.728889);
TextDrawAlignment(TDEditor_TD[3], 2);
TextDrawColor(TDEditor_TD[3], -1);
TextDrawSetShadow(TDEditor_TD[3], 0);
TextDrawSetOutline(TDEditor_TD[3], 1);
TextDrawBackgroundColor(TDEditor_TD[3], 255);
TextDrawFont(TDEditor_TD[3], 0);
TextDrawSetProportional(TDEditor_TD[3], 1);
Re: Outlines. -
Now its working. Thank you very much <3 !