SA-MP Forums Archive
Problem with textdraws - 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: Problem with textdraws (/showthread.php?tid=457374)



Problem with textdraws - UnlimitedFreeroam - 11.08.2013

pawn Код:
new Text:welcomeText;

pawn Код:
welcomeText = TextDrawCreate(240.0,580.0,"Welcome to Super Stunt 2013");
    TextDrawColor(welcomeText,0x000000FF);
    TextDrawFont(welcomeText,3);
    TextDrawLetterSize(welcomeText, 3.2 ,5.1);
    TextDrawTextSize(welcomeText, 2.0, 3.6);
pawn Код:
public OnPlayerSpawn(playerid)
{
    TextDrawShowForPlayer(playerid,welcomeText);
    StopAudioStreamForPlayer(playerid);
    return 1;
}
Why this doesn't showup In-game??


Re: Problem with textdraws - Basssiiie - 11.08.2013

Your TextDrawTextSize is probably way too small. I don't think your text is just 2 pixels by 3.6 pixels.