18.07.2009, 14:12
Thank you, that's correct!
I tried to make it to a box, but it looks like this (the long, gray line):
How can I make it like the red box?
I tried to make it to a box, but it looks like this (the long, gray line):
How can I make it like the red box?
pawn Код:
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
statsbox = TextDrawCreate(1.000000,200.000000,"Stats");
TextDrawFont(statsbox,1);
TextDrawColor(statsbox,0xFFFFFFAA);
TextDrawLetterSize(statsbox,0.599999,1.000000);
TextDrawSetOutline(statsbox,0);
TextDrawSetShadow(statsbox,0);
TextDrawSetProportional(statsbox,1);
TextDrawBackgroundColor(statsbox,0x000000ff);
TextDrawUseBox(statsbox,1);
TextDrawBoxColor(statsbox,0xAFAFAFAA);
TextDrawAlignment(statsbox,1);
return 1;
}