Get all online players into an int?

Discussion in 'Plugin Development' started by kampai, May 7, 2016.

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

    kampai

    How do I get all online players and put it into an int?
     
  2. Offline

    567legodude

    @kampai Do you mean count how many people are online?
     
  3. Offline

    pingpong1999

    Code:
     
                int i = 0;
                for(Player players: Bukkit.getOnlinePlayers()){
                    i++;
                }
    
    fairly sure this should work
     
  4. Offline

    567legodude

    @pingpong1999 But what about
    Code:
    Bukkit.getOnlinePlayers().size()
     
  5. Offline

    pingpong1999

    Oh, forgot about that XD.. much simpler
     
Thread Status:
Not open for further replies.

Share This Page