30.05.2013, 16:36
Why would you make it this Difficult,you can do this
pawn Код:
CMD:announce(playerid, params[])
{
new message[126];
format(message,sizeof(message), "%s", params);
for(new i = 0; i < MAX_PLAYERS; i++)
{
GameTextForPlayer(i, message, 5000, 6);
}
}