SA-MP Forums Archive
Need some help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Need some help (/showthread.php?tid=424850)



Need some help - Montis123 - 23.03.2013

I use iPLEOMAX's Textdraw editor

I try create textdraw


pawn Code:
CMD:aa(playerid,params[])
{
    new PlayerText:Textdraw0[MAX_PLAYERS];
    Textdraw0[playerid] = CreatePlayerTextDraw(playerid, 445.200012, 127.686668, "usebox");
    PlayerTextDrawLetterSize(playerid, Textdraw0[playerid], 0.000000, 18.681852);
    PlayerTextDrawTextSize(playerid, Textdraw0[playerid], 156.399993, 0.000000);
    PlayerTextDrawAlignment(playerid, Textdraw0[playerid], 1);
    PlayerTextDrawColor(playerid, Textdraw0[playerid], 0);
    PlayerTextDrawUseBox(playerid, Textdraw0[playerid], true);
    PlayerTextDrawBoxColor(playerid, Textdraw0[playerid], 102);
    PlayerTextDrawSetShadow(playerid, Textdraw0[playerid], 0);
    PlayerTextDrawSetOutline(playerid, Textdraw0[playerid], 0);
    PlayerTextDrawFont(playerid, Textdraw0[playerid], 0);
    return 1;
}

But when i use this command nothing happens i don't see my textdraw.

What's wrong ?


Re: Need some help - SilverKiller - 23.03.2013

pawn Code:
PlayerTextDrawShow(playerid, Textdraw0[playerid]);