Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. public class RunnableTask{
  2. public static void AutoMessage() {
  3. new BukkitRunnable() {
  4. int n = 0;
  5. public void run() {
  6. ++this.n;
  7. if (this.n == 1) {
  8. Bukkit.broadcastMessage("");
  9. Bukkit.broadcastMessage("§7[§6§lBeforeHG§7] §7Upload le §etrailer §7et gagne un kit §eVIP §7(/trailer) !");
  10. Bukkit.broadcastMessage("");
  11. }
  12. else if (this.n == 2) {
  13. Bukkit.broadcastMessage("");
  14. Bukkit.broadcastMessage("§7[§6§lBeforeHG§7] §7Une question vien sur le discord §elien/dudiscord.gg §7!");
  15. Bukkit.broadcastMessage("");
  16. this.n = 0;
  17. }
  18. }
  19. }.runTaskTimerAsynchronously((Plugin)core.getInstance(), 0L, 1400L);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement