20.12.2013, 03:42
Hey guys.
I was trying to make some textdraws today, but they aren't appearing. I was using an in-game maker, so it should be right. My code:
No errors show up in the compiler..
I was trying to make some textdraws today, but they aren't appearing. I was using an in-game maker, so it should be right. My code:
Код:
new PlayerText:Textdraw0;
public OnPlayerConnect(playerid)
{
//Text Draws
Textdraw0 = CreatePlayerTextDraw(playerid, 502.000000, 104.000000, "Ghost Riders");
PlayerTextDrawBackgroundColor(playerid, Textdraw0, 255);
PlayerTextDrawFont(playerid, Textdraw0, 1);
PlayerTextDrawLetterSize(playerid, Textdraw0, 0.500000, 1.000000);
PlayerTextDrawColor(playerid, Textdraw0, -16776961);
PlayerTextDrawSetOutline(playerid, Textdraw0, 0);
PlayerTextDrawSetProportional(playerid, Textdraw0, 1);
PlayerTextDrawSetShadow(playerid, Textdraw0, 1);
PlayerTextDrawUseBox(playerid, Textdraw0, 1);
PlayerTextDrawBoxColor(playerid, Textdraw0, 255);
PlayerTextDrawTextSize(playerid, Textdraw0, 610.000000, 0.000000);
PlayerTextDrawSetSelectable(playerid, Textdraw0, 0);


