Quick question.

Discussion in 'Plugin Development' started by BJCxMC, Oct 15, 2014.

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

    BJCxMC

    How would I change this - http://prntscr.com/4wj9na - to a number?

    Here's the code:
    Code:java
    1. e.getPlayer().sendMessage("> " + ChatColor.AQUA + "There are " + ChatColor.GREEN + Bukkit.getOnlinePlayers().toString() + ChatColor.AQUA + " players online!");
     
  2. Offline

    HeadGam3z

    If Bukkit.getOnlinePlayers() doesn't return it correctly, try String.valueOf(Bukkit.getOnlinePlayers())

    or you could use size() afterwards.
     
  3. Offline

    CraftCreeper6

    Just use Bukkit.getOnlinePlayers().size();
     
  4. Offline

    BJCxMC

    Didnt change anything :/

    That returns an error

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 14, 2016
  5. Offline

    JjPwN1

    Bukkit.getOnlinePlayers().length;
     
  6. Offline

    CraftCreeper6

    JjPwN1
    Ah, yes, didn't realise my error xD
     
Thread Status:
Not open for further replies.

Share This Page