SA-MP Forums Archive
Textdraw don't work - 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 don't work (/showthread.php?tid=97760)



Textdraw don't work - 111vovan111 - 16.09.2009

Код:
#include <a_samp>

new Text:Black0;

public OnFilterScriptInit()
{
	Black0 = TextDrawCreate(481.000000,353.000000,"_");
	TextDrawUseBox(Black0,1);
	TextDrawBoxColor(Black0,0x00000099);
	TextDrawTextSize(Black0,596.000000,0.000000);
	TextDrawAlignment(Black0,0);
	TextDrawBackgroundColor(Black0,0x000000ff);
	TextDrawFont(Black0,3);
	TextDrawLetterSize(Black0,3.599999,7.599996);
	TextDrawColor(Black0,0xffffffff);
	TextDrawSetOutline(Black0,1);
	TextDrawSetProportional(Black0,1);
	TextDrawSetShadow(Black0,1);
}


public OnPlayerSpawn(playerid)
{
TextDrawShowForPlayer(playerid,Black0);
}



Re: Textdraw don't work - beckzy - 16.09.2009

_ doesn't display in text draws


Re: Textdraw don't work - 111vovan111 - 16.09.2009

i want to create a blank textdraw (without text)