SA-MP Forums Archive
How to? - 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: How to? (/showthread.php?tid=78450)



How to? - Shellegg - 20.05.2009

How do i put a message on the the button of the screen announcing the server's forum?
Is it a type of SendGameTextForPlayer?

But i want this message with the website and always showing.

How do i do it?

Thanks
Shellegg


Re: How to? - heufix - 20.05.2009

use TextDrawCreate


Re: How to? - MenaceX^ - 20.05.2009

I recommend using Zamaroht's in-game textdraw maker. Easy to use also.


Re: How to? - Shellegg - 20.05.2009

I dont understand the form -.-
It says

TextDrawShowForAll(Text:text);

Should i put:

TextDrawShowForAll("www.mywebsitegoeshere.com");

?


Re: How to? - Weirdosport - 20.05.2009

You have to create the textdraw first using TextDrawCreate and then save it... I recommend using the program the others advised, it does alot of the work for you..

Other than that you need something like:

pawn Код:
//top of script
new Text:bob;

//on gamemode/filterscript init
bob = TextDrawCreate(100, 400, "http://www.mywebsitegoeshere.com[url=http://][/url]");

//on player connect
TextDrawShowForPlayer(playerid, bob);



Re: How to? - Shellegg - 20.05.2009

thank you