16.06.2013, 15:45
That:
will only send the message for the first player in the sender team and then send it globally, cuz simply adding "return" will break out of the loop and exit the function, returning 1 will make the server broadcast the message, so remove the "return 1" line
also using "return 0" at the end of the function will indeed stop the message from being sent globally
pawn Код:
SCM(i, COLYELLOW, message);
return 1;
also using "return 0" at the end of the function will indeed stop the message from being sent globally