W is thecode to teleport all the onlines palyers?

Discussion in 'Plugin Development' started by oran10majar, Nov 23, 2013.

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

    oran10majar

    What is thecode to teleport all the onlines palyers?
     
  2. Offline

    Rangeroverr

    This should work if you want it to work on the command "tpall" but if you want it as an EventHandler it would be different.

    Code:java
    1. public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args)
    2. {
    3. if(cmd.getName().equalsIgnoreCase("tpall"))
    4. {
    5. for(Player p : Bukkit.getOnlinePlayers())
    6. {
    7. if(p.getWorld().equals(WORLD)
    8. {
    9. p.teleport(LOCATION);
    10. }
    11. }
    12. }
    13. }
     
Thread Status:
Not open for further replies.

Share This Page