Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. Location barrier1 = new Location(Bukkit.getWorld("Test"), -59D, 74D, 336D);
  2. Location barrier2 = new Location(Bukkit.getWorld("Test"), -60D, 74D, 335D);
  3. Location barrier3 = new Location(Bukkit.getWorld("Test"), -59D, 74D, 334D);
  4. Location barrier4 = new Location(Bukkit.getWorld("Test"), -59D, 73D, 336D);
  5. Location barrier5 = new Location(Bukkit.getWorld("Test"), -60D, 73D, 335D);
  6. Location barrier6 = new Location(Bukkit.getWorld("Test"), -59D, 73D, 334D);
  7.  
  8. barrier1.getBlock().breakNaturally(null);
  9. barrier2.getBlock().breakNaturally(null);
  10. barrier3.getBlock().breakNaturally(null);
  11. barrier4.getBlock().breakNaturally(null);
  12. barrier5.getBlock().breakNaturally(null);
  13. barrier6.getBlock().breakNaturally(null);
  14.  
  15.  
  16. Location create1 = new Location(Bukkit.getWorld("Test"), -62D, 74D, 336D);
  17. Location create2 = new Location(Bukkit.getWorld("Test"), -63D, 74D, 335D);
  18. Location create3 = new Location(Bukkit.getWorld("Test"), -62D, 74D, 334D);
  19. Location create4 = new Location(Bukkit.getWorld("Test"), -62D, 73D, 336D);
  20. Location create5 = new Location(Bukkit.getWorld("Test"), -63D, 73D, 335D);
  21. Location create6 = new Location(Bukkit.getWorld("Test"), -62D, 73D, 334D);
  22.  
  23.  
  24.  
  25. create1.getBlock().setTypeId(7);
  26. create2.getBlock().setTypeId(7);
  27. create3.getBlock().setTypeId(7);
  28. create4.getBlock().setTypeId(7);
  29. create5.getBlock().setTypeId(7);
  30. create6.getBlock().setTypeId(7);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement