Hello i want to know how i can make a Online Player List or get the Online Player and the name of the Player? Pls tell me i get crazy!!!!!!!!
Code:java //If you know your world name you can use in the main.//This will return a List. this.getServer().getWorld("World_Name").getPlayers(); //If you have a player object then you can use that to find out also.//This will return a List. player.getWorld().getPlayers();
Code: for (Player p : Bukkit.getServer().getOnlinePlayers()) { p.getName(); //There you get the name of the player }