13.01.2015, 14:00
You need to loop through all players.
This is an example loop, use that, and replace "playerid" with "i".
Currently your script sends the message to "playerid", which is defined in the command. Which means it will only send it to the playerid that uses the command.
You can also use "foreach" to do it if you have that include.
pawn Код:
for(new i; i < GetMaxPlayers(); i++)
Currently your script sends the message to "playerid", which is defined in the command. Which means it will only send it to the playerid that uses the command.
pawn Код:
foreach(Player, i)