18.02.2010, 19:26
Hey all,
I have created a textdraw at the buttom right (under the mini-map).
I want to use this textdraw for my server, as a function.
I want to know how can i create a function like this:
and in the function i want to show the textdraw and set his string
Example:
* I need also that when the message will show up, it will dissaper after seconds
Please Help!
I have created a textdraw at the buttom right (under the mini-map).
I want to use this textdraw for my server, as a function.
I want to know how can i create a function like this:
pawn Код:
SendTextMessageForAll(message);
Example:
pawn Код:
public OnPlayerConnect(playerid) {
format(str,sizeof(str),"~Y~[NEWS]: ~R~%s (%d) ~B~has joined the server.", PlayerName, playerid);
SendTextMessageToAll(str);
return 1;
}
Please Help!