Advertisement
Legt_Gaming1

Untitled

Jan 25th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. public class Announcer extends JavaPlugin {
  3.  
  4.     public void onEnable() {
  5.         Bukkit.getServer().getScheduler().scheduleSyncRepeatingTask(this, new Runnable() {
  6.             public void run() {
  7.                 Bukkit.getServer().broadcastMessage(ChatColor.GREEN + "This is an announcement!");
  8.             }
  9.         }, 60//delay after command, 100//interval);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement