Player List

Discussion in 'Plugin Development' started by esret, Feb 3, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    esret

    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!!!!!!!!
     
  2. Code:java
    1.  
    2. //If you know your world name you can use in the main.
    3. //This will return a List.
    4. this.getServer().getWorld("World_Name").getPlayers();
    5.  
    6. //If you have a player object then you can use that to find out also.
    7. //This will return a List.
    8. player.getWorld().getPlayers();
    9.  
     
  3. Offline

    esret

    But only the online Players?
     
  4. Offline

    Seadragon91

    Code:
    for (Player p : Bukkit.getServer().getOnlinePlayers()) {
                    p.getName(); //There you get the name of the player
    }
     
Thread Status:
Not open for further replies.

Share This Page