Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. W

    Mod code fixes and tweaks

    The timer limit would really be nice... maybe someone could try to patch
  2. W

    BedCraftGP - [*Fix 95% off ALL griefing*] ~Ultimate ~Unleashed

    BlockPlace Class: if (block.getTypeId() == 516 ){ int y = block.getY(); int x = block.getX(); int z = block.getZ(); World world = block.getWorld(); boolean check = false; if(main.getF(player)==1 || main.getF(player)==-3){ //Facing West...
  3. W

    BedCraftGP - [*Fix 95% off ALL griefing*] ~Ultimate ~Unleashed

    Yes I realize that. I now have just banned wand of excavation because it is just a world destroying tool. All the other wands still work. I also added some code to prevent access of project tables and the latter. I have also tweaked the quarry code to get the direction it is being placed so...
  4. W

    BedCraftGP - [*Fix 95% off ALL griefing*] ~Ultimate ~Unleashed

    I've tested wand of exc and that does not bypass that way but the right click air event idk. But you have a point there. If it does work then I can just use your previous code for that event specifically or something along those lines. EDIT: If you click into the air the event is still called...
  5. W

    BedCraftGP - [*Fix 95% off ALL griefing*] ~Ultimate ~Unleashed

    I have found a better method for your player interact event that works better and does not use as much time and processing power Your original code: //Block c9 = world.getBlockAt(x, y, z); //Block c1 = world.getBlockAt(x + 8, y, z); //Block c2 = world.getBlockAt(x - 8, y, z)...
  6. W

    BedCraftGP - [*Fix 95% off ALL griefing*] ~Ultimate ~Unleashed

    Ok... Now for my own purposes I will create a seperate quarry event that will check 11 blocks... Then the other items will be set to another number because my users complain that they cannot destroy close to a claim. Thank you
  7. W

    BedCraftGP - [*Fix 95% off ALL griefing*] ~Ultimate ~Unleashed

    Just wanted to let you know I altered your code to allow for an area protection that's cords are customized in the config. You did a great job and I can even moreso see that when I alter the source code, it's flexible and simple. I also wanted to know why you chose 11 as the number of blocks...
  8. W

    BedCraftGP - [*Fix 95% off ALL griefing*] ~Ultimate ~Unleashed

    I cant seem to get plugin to work. Im getting this error: org.bukkit.plugin.InvalidPluginException: java.lang.ClassNotFoundException: Failed to remap class de.bc.uxelduxel.main at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:176) at...