/creeper.java

https://github.com/goosegg/Bukkit-Plugin · Java · 82 lines · 59 code · 19 blank · 4 comment · 5 complexity · 2d9e562899065a17c8e1949f631994c7 MD5 · raw file

  1. package com.github.goosegg.creeper;
  2. import java.util.logging.Logger;
  3. import org.bukkit.Location;
  4. import org.bukkit.World;
  5. import org.bukkit.block.Block;
  6. import org.bukkit.command.Command;
  7. import org.bukkit.command.CommandSender;
  8. import org.bukkit.entity.Player;
  9. import org.bukkit.event.player.PlayerMoveEvent;
  10. import org.bukkit.plugin.java.JavaPlugin;
  11. public class creeper extends JavaPlugin {
  12. Logger log = Logger.getLogger("Minecraft");
  13. public void onEnable(){
  14. log.info("Creeper No-clip ENABLED!");
  15. }
  16. public void onDisable(){
  17. log.info("Regular Creepers D:");
  18. }
  19. public void onPlayerMove(PlayerMoveEvent event) {
  20. Player player = event.getPlayer();
  21. Location loc = player.getLocation();
  22. generateCube(loc, 5);
  23. }
  24. public void generateCube(Location point, int length){
  25. World world = point.getWorld();
  26. int x_start = point.getBlockX(); // Set the startpoints to the coordinates of the given location
  27. int y_start = point.getBlockY(); // I use getBlockX() instead of getX() because it gives you a int value and so you dont have to cast it with (int)point.getX()
  28. int z_start = point.getBlockZ();
  29. int x_lenght = x_start + length; // now i set the lenghts for each dimension... should be clear.
  30. int y_lenght = y_start + length;
  31. int z_lenght = z_start + length;
  32. for(int x_operate = x_start; x_operate <= x_lenght; x_operate++){
  33. // Loop 1 for the X-Dimension "for x_operate (which is set to x_start)
  34. //do whats inside the loop while x_operate is
  35. //<= x_length and after each loop increase
  36. //x_operate by 1 (x_operate++ is the same as x_operate=x_operate+1;)
  37. for(int y_operate = y_start; y_operate <= y_lenght; y_operate++){// Loop 2 for the Y-Dimension
  38. for(int z_operate = z_start; z_operate <= z_lenght; z_operate++){// Loop 3 for the Z-Dimension
  39. Block blockToChange = world.getBlockAt(x_operate,y_operate,z_operate); // get the block with the current coordinates
  40. blockToChange.setTypeId(00); // set the block to Type 34
  41. }
  42. }
  43. }
  44. }
  45. public boolean onCommand(CommandSender sender, Command cmd, int commandLabel, int l){
  46. if(cmd.getName().equalsIgnoreCase("ec")){ // If the player typed /basic then do the following...
  47. Player player = (Player)sender;
  48. Location tempLocation = player.getLocation();
  49. generateCube(tempLocation, l);
  50. return true;
  51. } //If this has happened the function will break and return true. if this hasn't happened the a value of false will be returned.
  52. return false;
  53. }
  54. public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args){
  55. if(cmd.getName().equalsIgnoreCase("rm")){ // If the player typed /basic then do the following...
  56. Player player = (Player)sender;
  57. Location tempLocation = player.getLocation();
  58. generateCube(tempLocation, 5);
  59. return true;
  60. } //If this has happened the function will break and return true. if this hasn't happened the a value of false will be returned.
  61. return false;
  62. }
  63. }