send message to player minecraft spigot code example
Example 1: send message to all player java spigot
for (Player p : Bukkit.getOnlinePlayers()) {
p.sendMessage("");
}
Example 2: send message to all player java spigot
Bukkit.broadcastMessage("your message");
Example 3: Spigot coding how to send a message to player after commadn
public boolean onCommand(CommandSender sender, Command cmd, String[] args, String tag) {
if(tag.equals("test")) {
Player player = (Player)sender;
player.sendMessage("Hello World!");
return true;
}
return false;
}