Advertisement
Guest User

Untitled

a guest
Jun 7th, 2014
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.13 KB | None | 0 0
  1. ############################################################################################################
  2. ## BC-Protect ##
  3. ## Bukkit plug-in made to protect your server against items who do not trigger bukkit events. ##
  4. ## This plug-in hooks into PlayerInteract events and will do build-permission checks, if its ##
  5. ## triggered as an bypass the event gets set to cancelled and this mostly will prevent the ##
  6. ## item from bypassing a Towny or Griefprevention claim. ##
  7. ## ##
  8. ## © darkdeath1332 (BedCraft) 2014 ##
  9. ## Contact: www.bedcraft.eu ##
  10. ## jordyf4 (skype) ##
  11. ############################################################################################################
  12.  
  13. ##################
  14. ## Current compatible bukkit plug-ins: Towny, GriefPrevention.
  15. ## T = Towny
  16. ## GP = Griefprevention
  17. ## DEFAULT: GP
  18. useplugin: GP
  19. ##################
  20.  
  21. #############################################################################################################
  22. ## Message Configuration ##
  23. #############################################################################################################
  24. # [BC-Protect] You don't have the permission to do this here
  25. Prefix: SC
  26. Message: You don't have the permission to do this here.
  27.  
  28. #############################################################################################################
  29. ## Known bypasses ##
  30. ## Request a bypass fix by contacting me, I will let you know if this is possible. A bypass is considered ##
  31. ## when the item still bypasses even after using this plug-in. Due this I can add extra code to still work ##
  32. ## this bug around :) ##
  33. #############################################################################################################
  34. ## EE-3: Minimum Stone ; Known to still bypass even after its cancelled - Workaround:
  35. # Take away the item when someone bypasses and the bypass no longer works.
  36. # Default id = FTB-Ultimate
  37. fixminimumstone: false
  38. minimumstoneID: 27002
  39.  
  40. ## Factorization: Wrath Igniter ; Known to set fire everywhere, used to make dark iron - Workaround:
  41. # Only allow it to be used where its made for, block it when not used on a Iron Block.
  42. # Default id = FTB-Ultimate
  43. fixwrathlamp: false
  44. wrathlampID: 9263
  45.  
  46. ## Flaw Guns Mod: Any gun ; Known to break glass - Workaround:
  47. # Long range target block check of 200 blocks. Items ignore even.setcancelled so we
  48. # worked the around to take away and re-give the item.
  49. fixflawguns: false
  50. FlawGunList:
  51. - '23801' # Guns
  52.  
  53. #############################################################################################################
  54. ## Item Configuration Around Claims ##
  55. ## Items who can bypass towns when the player is outside / next to the town, thanks mod makers for not ##
  56. ## doing bukkit events... ##
  57. #############################################################################################################
  58. ## String List for all:
  59. # id = Item ID,
  60. # sub = Sub-ID (Use '*' to ignore sub ID),
  61. # range = How close in blocks to a claim
  62. # id:sub:range
  63. ##
  64. ClickAroundClaim:
  65. - '27002:*' # Minimum stone
  66. - '5766:*' # Quartz Wrench
  67. - '5263:*' # Wrench
  68. - '5397:*' # Wrench
  69. - '20757:*' # Flux-Infused OmniWrench
  70. - '30183:*' # Wrench
  71. - '27003:*' # Philosopher's Stone
  72. - '8887:*' # Crescent Hammer
  73. - '30124:*' # Electric Treetap
  74. - '325:*' # Bucket
  75. - '5684:1' # Safari Net Launcher
  76. # ^ Please remove this line and put items who actually need to be there.
  77. # EXAMPLE:
  78. # - '1:*:5'
  79. # The item with the ID 1 can shoot a troll. The troll blows up 1 block, and the range of the item is 5 blocks.
  80. # So, we cancel it when someone attempts to use this in a range of 5 blocks where the player cant build.
  81. PlaceAroundClaim:
  82. - '519:*:30' # Quarry
  83. - '512:*:30' # Land Mark
  84. - '761:*:30' # Mining Turtle
  85. - '1230:*:30' # Advanced Mining Turtle
  86. - '1230:*:1' # Block Breaker
  87. # ^ Please remove this line and put items who actually need to be there.
  88. # EXAMPLE:
  89. # - '1:*:11'
  90. # The item with the ID 1 is a Quarry like item from BuildCraft. It can break block in a range of 11 when you place
  91. # it down. This way of bypassing is resolved by cancelling it when its closer than 11 blocks.
  92. # TIP: Put block breakers inside this list! Give them the range 1 and they will not take items from the edge of
  93. # a claim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement