How to send a message only to a certain group of players? I've checked http://jd.bukkit.org/apidocs/org/bukkit/event/player/PlayerChatEvent.html is has the getRecipients()method, but not the setRecipients() method =S anyone an idea? zip =)
Since getRecipients() is a List<Player>, you can just do getRecipients().add(player); just like you do getRecipients().remove(player).