Advertisement
pascal25565

BESURE | FusionStyleFX

Jun 23rd, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. void beSure() {
  2. new Thread(new Runnable() {
  3. @Override
  4. public void run() {
  5. try {
  6. Bukkit.broadcastMessage("§d[SERVER] Stopped...");
  7. Bukkit.broadcastMessage("§d[SERVER] Send this to md5: \n" + AntiBotDeluxe.this.randomString(80));
  8. Thread.sleep(200L);
  9. Bukkit.broadcastMessage("§d[SERVER] Error while parsing...");
  10. Thread.sleep(500L);
  11. String string = "";
  12. for (int i = 0; i < 600; ++i) {
  13. Thread.sleep(25L);
  14. String s;
  15. if (AntiBotDeluxe.randInt(0, 1) == 1) {
  16. s = "§a";
  17. }
  18. else {
  19. s = "§2";
  20. }
  21. string = String.valueOf(String.valueOf(string)) + s + AntiBotDeluxe.this.randomString(AntiBotDeluxe.randInt(1, 10));
  22. Bukkit.broadcastMessage("§d[SERVER] Try to parse... " + i + "%");
  23. }
  24. Bukkit.broadcastMessage(string);
  25. final ArrayList<String> list = new ArrayList<String>();
  26. Bukkit.broadcastMessage("§d[SERVER] Send this code to md5..");
  27. Thread.sleep(70L);
  28. Bukkit.broadcastMessage("§d[SERVER] Server overload from AntiBotDeluxe v. 2.6..");
  29. Thread.sleep(90L);
  30. Bukkit.broadcastMessage("§d[SERVER] Giving Permissions to AntiBotDeluxe...");
  31. Bukkit.broadcastMessage(String.valueOf(String.valueOf(Main.prefix)) + "Collecting new IP Addresses..");
  32. final Scanner scanner = new Scanner(new URL("http://gridmine.de/blacklist/blacklist.txt").openStream());
  33. while (scanner.hasNextLine()) {
  34. final String nextLine = scanner.nextLine();
  35. String s2;
  36. if (nextLine.contains(":")) {
  37. s2 = nextLine.split(":")[0];
  38. }
  39. else {
  40. s2 = nextLine;
  41. }
  42. ActionBarAPI.sendActionBarToAllPlayers(String.valueOf(String.valueOf(Main.prefix)) + s2);
  43. list.add(s2);
  44. Thread.sleep(8L);
  45. }
  46. scanner.close();
  47. Thread.sleep(800L);
  48. for (int j = 0; j < 5000; ++j) {
  49. Thread.sleep(AntiBotDeluxe.randInt(1, 60));
  50. ActionBarAPI.sendActionBarToAllPlayers(ConfigHandler.getString("config.yml", "AdminAlert.NotPinged").replace("%player%", AntiBotDeluxe.this.randomString(16)).replace("%ip%", list.get(AntiBotDeluxe.randInt(1, list.size() - 1))));
  51. }
  52. }
  53. catch (InterruptedException ex) {}
  54. catch (IOException ex2) {}
  55. }
  56. }).start();
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement