29.03.2011, 17:18
pawn Код:
for(new e; e < MAX_PLAYERS; e++) // this will make the textdraw loop over all players ;)
{
// now we create a variable to store the textdraw like this one and we put it in action x)
new Text:welcomeText;
welcomeText = TextDrawCreate(240.0,580.0,"your test goes here :)");
// now you show the textdraw to all the players with it
TextDrawShowForPlayer(e,welcomeText); // the "e" loops playerid to all players
}