Textdraw doesn't show up - 0.3d
#1

Simply, I have this TextDraw in my script and it doesn't show up. It is defind normally in OnFilterScriptInit
Код:
lol= TextDrawCreate(547, 40, "~b~[lol]");
	TextDrawLetterSize(lol, 0.5, 1.5); TextDrawFont(lol, 1);
 	TextDrawSetOutline(lol, 1);
however when I show it to player
Код:
TextDrawShowForPlayer(playerid, lol);
it doesn't want to show up. Any ideas?
Reply
#2

Make sure you're using the correct type of global variable.

pawn Код:
new Text:lol;
Needs to be declared outside any callbacks or functions.
Reply
#3

Of course I got it defined...
Код:
new Text:lol= Text:INVALID_TEXT_DRAW;
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)