SA-MP Forums Archive
textdraw script please - 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 script please (/showthread.php?tid=135454)



textdraw script please - cssbart - 20.03.2010

Can any one script a textdraw that says "WDMCLAN.TK" under the map. full script please you i can just add and it will work


Re: textdraw script please - MadeMan - 20.03.2010

http://forum.sa-mp.com/index.php?topic=143025.0


Re: textdraw script please - aircombat - 20.03.2010

np here is the code :

top of script :
Код:
new Text:SiteName;
under ongamemodeinit :
Код:
SiteName = TextDrawCreate(4.000000,435.000000,"WDMCLAN.TK");
TextDrawFont(SiteName,1);
TextDrawColor(SiteName,0xAA3333AA);
TextDrawLetterSize(SiteName,0.599999,1.000000);
TextDrawSetOutline(SiteName,1);
TextDrawSetShadow(SiteName,0);
TextDrawSetProportional(SiteName,1);
TextDrawBackgroundColor(SiteName,0x000000ff);



Re: textdraw script please - cssbart - 20.03.2010

is that all i need i heard youu have to put some thing under the playerconnect


Re: textdraw script please - aircombat - 20.03.2010

nop u don't need anything else if u dont believe test u won't lose anything


Re: textdraw script please - cssbart - 20.03.2010

ok


Re: textdraw script please - MadeMan - 20.03.2010

You have to show it too

https://sampwiki.blast.hk/wiki/TextDrawShowForPlayer


Re: textdraw script please - aircombat - 20.03.2010

TextDrawShowForPlayer(playerid,classes);


underonplayerconnect


Re: textdraw script please - [MWR]Blood - 20.03.2010

pawn Код:
TextDrawShowForPlayer(playerid,SiteName); // under OnPlayerConnect



Re: textdraw script please - cssbart - 22.03.2010

ty ill try that