How to?
#1

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
Reply
#2

use TextDrawCreate
Reply
#3

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

I dont understand the form -.-
It says

TextDrawShowForAll(Text:text);

Should i put:

TextDrawShowForAll("www.mywebsitegoeshere.com");

?
Reply
#5

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);
Reply
#6

thank you
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)