
Originally Posted by
Freelancer
Also, what is the command to broadcast messages to everyone playing? For example, lets say that I want the server to say "**SERVER**: playername has 50 kills!" to everyone in the server. I know that if you use the following it won't work at all:
Code:
event_kill 50 'say "$name has $kills kills!"'
And if you use the next one it only sends it to the player who just got 50 kills:
Code:
event_kill 50 'say $n "$name has $kills kills!"'
So how do you send it to all the players in the server?
He actually mentioned this on the previous page (and it's also on top of this one).., but just replace n$ with an asterisk.
Code:
event_kill 50 'say * "$name has $kills kills."'
that should do the trick.
Bookmarks