Hero Block 1.3.1 NEEDED!!

Discussion in 'Archived: Plugin Requests' started by iBCoLLiN, Aug 5, 2012.

  1. Offline

    iBCoLLiN

    Hi i need a plugin that allows me to block certain blocks from being placed. Such as lava,fire,water,tnt and other blocks. Please include a config for banned blocks with block id and for a bypass for people to place it it is heroblock.<block id> Now i know what your thinking. "There are a bunch of plugins like this!" But there isnt. Atleast not for the 1.3 bukkit. Thats what i need! so if someone can do this that would be great! also you can name it what ever. I just thought that was a cool name!

    Anyone?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016
  2. Offline

    np98765

    You need to wait at least 12 hours before bumping, not 30 minutes...

    And this CAN be done with numerous plugins, and most of them work with 1.3. I know for certain that the WorldGuard blacklist still works.
     
    anthonyc39 likes this.
  3. Offline

    iBCoLLiN

    i need it to prevent them from placing it :p
     
  4. Offline

    np98765

    ... Again, WorldGuard blacklist? :confused:
     
  5. Offline

    iBCoLLiN

    But i need cetain groups to be able to place it
     
  6. Offline

    np98765

    ...... Again, WorldGuard blacklist. -_- Why don't you go look what it can do...
     
  7. Offline

    iBCoLLiN

    Alright. Well i would like a plugin. But ill look into this
     
  8. Offline

    np98765

    WorldGuard IS a plugin, it has a blacklist feature. Why would someone create something that already exists...
     
  9. Offline

    iBCoLLiN

    iblock
     
  10. Offline

    np98765

    Could've searched before posting, too. :3
     
  11. Offline

    iBCoLLiN

    it doesnt work with 1.3. Thats why im here :p
     
  12. Offline

    np98765

    Ah, well, either wait for it to be updated, or use WG.... ;)
     
  13. Offline

    firecombat4

    PermissionsEX/ multiworld.
     
  14. Offline

    iBCoLLiN

    Just tried. Donesnt work. :(
     
  15. Offline

    np98765

    ... You should be more descriptive than "it doesn't work". I know that it works, because I'm actually using it on my 1.3.1 test server right now.
     
  16. Offline

    iBCoLLiN

    Well can you maybe configure it for me? when i do the YAML it says there is a error with what i added
     
  17. Offline

    np98765

    Then you made an error in the YAML format. It uses the same "rules" as permissions plugins do; it should be set up similarly.

    In fact, by default, it has examples in there. Just follow those, replacing what you need, and it will run fine.
     
  18. Offline

    iBCoLLiN

    Here is my config. I did it super carfully i even watched a video. whats wrong?

    Code:
    #
    # WorldGuard blacklist
    #
    # The blacklist lets you block actions, blocks, and items from being used.
    # You choose a set of "items to affect" and a list of "actions to perform."
    #
    ###############################################################################
    #
    # Example to block some ore mining and placement:
    # [coalore,goldore,ironore]
    # on-break=deny,log,kick
    # on-place=deny,tell
    #
    # Events that you can detect:
    # - on-break (when a block of this type is about to be broken)
    # - on-destroy-with (the item/block held by the user while destroying)
    # - on-place (a block is being placed)
    # - on-use (an item like flint and steel or a bucket is being used)
    # - on-interact (when a block in used (doors, chests, etc.))
    # - on-drop (an item is being dropped from the player's inventory)
    # - on-acquire (an item enters a player's inventory via some method)
    #
    # Actions (for events):
    # - deny (deny completely, used blacklist mode)
    # - allow (used in whitelist mode)
    # - notify (notify admins with the 'worldguard.notify' permission)
    # - log (log to console/file/database)
    # - tell (tell a player that that's not allowed)
    # - kick (kick player)
    # - ban (ban player)
    #
    # Options:
    # - ignore-groups (comma-separated list of groups to not affect)
    # - ignore-perms (comma-separated list of permissions to not affect - make up
    #  your very own permissions!)
    # - comment (message for yourself that is printed with 'log' and 'notify')
    # - message (optional message to show the user instead; %s is the item name)
    #
    ###############################################################################
    #
    # For more information, see:
    # http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
    #
    ###############################################################################
    #
    # Some examples follow.
    # REMEMBER: If a line has # in front, it will be ignored.
    #
     
    # Deny lava buckets
    #[lavabucket]
    #ignore-perms=my.own.madeup.permission
    #ignore-groups=admins,mods
    #on-use=deny,tell
     
    # Deny some ore
    #[coalore,goldore,ironore]
    #ignore-groups=admins,mods
    #on-break=notify,deny,log
     
    [lavabucket,waterbucket,259]
    ignore-perms=bypassblock.moderator
    on-use=deny,tell
     
  19. Offline

    np98765

    Did the error give you a line number? If so, go to that line and paste it here.
     
  20. Offline

    iBCoLLiN

    heres what it says

    [​IMG]
     
  21. Offline

    np98765

    Weird. Try just using [lavabucket] individually..
     
  22. Offline

    iBCoLLiN

    Didnt work :/
     
  23. Offline

    np98765

    That's really weird; I've never once had an issue with WorldGuard.

    I'd recommend posting on Bukkit Help, as someone there will probably be able to figure it out in a jiffy.
     
  24. Offline

    iBCoLLiN

    Can you send me your config? maybe i can edit it off of yours.
     
  25. Offline

    np98765

    Code:
    # Deny lava buckets
    [lavabucket]
    ignore-perms=my.own.madeup.permission
    ignore-groups=moderator
    on-use=deny,tell
    message=No lava for you!
     
    # Deny TNT
    [tnt]
    ignore-perms=allow.tnt
    on-place=deny,tell
    message=You can't use TNT.
     
    # Deny Flint and Steel
    [flintandsteel]
    ignore-groups=moderator
    on-use=deny,tell
    on-place-deny,tell
     
    
     
  26. Offline

    iBCoLLiN

    same issue :(
     
  27. Offline

    OstlerDev

    The blacklist.txt is not a yaml file, it reads into the plugin using IO, your config should work fine, if it is still not working, please contact sk98q and give him your server log, and other errors.
     
  28. Offline

    np98765

    Derp, why in the world did I think it was a yaml file? :confused: :p
     
  29. Offline

    iBCoLLiN

    haha i fixd it lol

    How would i block lava block and water block?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016

Share This Page