SA-MP Forums Archive
My textdraw will not show - 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: My textdraw will not show (/showthread.php?tid=355496)



My textdraw will not show - Mikibey - 30.06.2012

So i've tried to make a textdraw,everything works right,here is the code:

new Text:Textdraw1;

public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
Textdraw1 = TextDrawCreate(476 ,451 , "Textdraw String");
TextDrawFont(Textdraw1 , 0);
TextDrawLetterSize(Textdraw1 , 0.6, 4.2);
TextDrawColor(Textdraw1 , 0x19fa0dFF);
TextDrawSetOutline(Textdraw1 , true);
TextDrawSetProportional(Textdraw1 , true);
TextDrawSetShadow(Textdraw1 , 255);
TextDrawShowForAll(Textdraw1);
return 1;
}

and TextDrawShowForPlayer(playerid, Textdraw1); on player connect and i've tried adding it to the on player spawn too...
the problem is that my text will not show up and i dont know what is wrong, i get no error,no warning...clean code...


Re: My textdraw will not show - Mikibey - 30.06.2012

so?can anyone help me?


Re: My textdraw will not show - Dan.. - 30.06.2012

You can use TextDrawShowForAll() in OnGameModeInit(), but that's not useful, because that means it would show the textdraw for all online players in THAT moment (probably none). You need to add TextDrawShowForPlayer in OnPlayerConnect.

EDIT: Lol, that coordinates are outside the screen. (Textdraw1 = TextDrawCreate(476 ,451 , "Textdraw String")