Skip to content

Instantly share code, notes, and snippets.

@Cewlt
Last active August 29, 2015 14:18
Show Gist options
  • Save Cewlt/ee31036d3fdc6a2dff9f to your computer and use it in GitHub Desktop.
Save Cewlt/ee31036d3fdc6a2dff9f to your computer and use it in GitHub Desktop.
List<String> automsgs = getConfig().getStringList("automessages");
Random r = new Random();
public void onEnable() {
Bukkit.getScheduler().scheduleSyncRepeatingTask(this, new Runnable() {
public void run() {
if(!(Bukkit.getOnlinePlayers().size() <= 1)) {
String msg = ChatColor.translateAlternateColorCodes('&', automsgs.get(r.nextInt(automsgs.size())));
Bukkit.broadcastMessage(msg);
}
}
}, 0, 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment