SA-MP Forums Archive
Textdraw issue - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Textdraw issue (/showthread.php?tid=243571)



Textdraw issue - sim_sima - 23.03.2011

Well, i have a problem creating textdraws.
I did the following:
At the top of my script:
pawn Код:
new Text:Textdraw0;
and in 'OnGamemodeInit':
pawn Код:
Textdraw0 = TextDrawCreate(493.000000, 102.000000, "VoresSide.com");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 1);
TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw0, 1);
TextDrawSetProportional(Textdraw0, 1);
Hope someone can help me. Thanks.


Re: Textdraw issue - xir - 23.03.2011

What is the issue?
It doesn't compile or doesnt work ingame?


Re: Textdraw issue - sim_sima - 23.03.2011

Doesnt work ingame


Re: Textdraw issue - sim_sima - 23.03.2011

Any ideas why?


Re: Textdraw issue - Markx - 23.03.2011

Put this under public OnplayerConnect(playerid):

pawn Код:
TextDrawShowForPlayer(playerid,Textdraw0);



Re: Textdraw issue - sim_sima - 23.03.2011

Thanks.