Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. Location barrier1 = new Location(Bukkit.getWorld("Test"), -120D, 74D, 328D);
  2. Location barrier2 = new Location(Bukkit.getWorld("Test"), -119D, 74D, 329D);
  3. Location barrier3 = new Location(Bukkit.getWorld("Test"), -120D, 74D, 330D);
  4. Location barrier4 = new Location(Bukkit.getWorld("Test"), -120D, 73D, 328D);
  5. Location barrier5 = new Location(Bukkit.getWorld("Test"), -119D, 73D, 329D);
  6. Location barrier6 = new Location(Bukkit.getWorld("Test"), -120D, 73D, 330D);
  7. barrier1.getBlock().breakNaturally(null);
  8. barrier2.getBlock().breakNaturally(null);
  9. barrier3.getBlock().breakNaturally(null);
  10. barrier4.getBlock().breakNaturally(null);
  11. barrier5.getBlock().breakNaturally(null);
  12. barrier6.getBlock().breakNaturally(null);
  13.  
  14.  
  15. Location create1 = new Location(Bukkit.getWorld("Test"), -117D, 74D, 328D);
  16. Location create2 = new Location(Bukkit.getWorld("Test"), -116D, 74D, 329D);
  17. Location create3 = new Location(Bukkit.getWorld("Test"), -117D, 74D, 330D);
  18. Location create4 = new Location(Bukkit.getWorld("Test"), -117D, 73D, 328D);
  19. Location create5 = new Location(Bukkit.getWorld("Test"), -116D, 73D, 329D);
  20. Location create6 = new Location(Bukkit.getWorld("Test"), -117D, 73D, 330D);
  21.  
  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