public static void start(){
ArrayList<Location> locs = new ArrayList<Location>();
locs.add(new Location(Bukkit.getWorlds().get(0), -218, 70, -55));
locs.add(new Location(Bukkit.getWorlds().get(0), -215, 70, -55));
locs.add(new Location(Bukkit.getWorlds().get(0), -215, 70, -52));
locs.add(new Location(Bukkit.getWorlds().get(0), -218, 70, -52));
Random ran = new Random();
for(Player pls : Bukkit.getOnlinePlayers()){
Location randomLoc = locs.get(ran.nextInt(locs.size()));
pls.teleport(randomLoc);
}
}
[code]
Cela m'éparpille les joueur au quatre point mais j'aimerais que cela me les regroupe à un des quatre point :/ , cela est-il possible ?