Can't build or Destroy blocks :O

Discussion in 'Bukkit Help' started by TechnoGamer, Jul 25, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    TechnoGamer

    Like the title says, i can't destroy or build anything in the game.
    I have permissions installed and i am admin. any help?
     
  2. Offline

    @$@P

    Hmmmmm bad lag? You make sure you can? Post your permissions files
     
  3. Offline

    TechnoGamer

    I know for a fact it isn't lag.

    Well i use permissions 3.x:
    globalGroups.yml:
    Code:
    ##
    # Permissions has AntiBuild, which prevents a player from destroying/placing blocks.
    # To prevent a group of players then set the build: flag to false (build: false).
    # If you want a group to be able to build then set it to true.
    ##
    # Groups can inherit from other groups.
    #   To make a group inherit the permissions and info nodes from another
    #   group, simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   Wildcard Permission settings:
    #
    #       You can have wildcard nodes which encompass all nodes that match it.
    #       For example, the node "modplugin.*" matches "modplugin.kick", "modplugin.ban",
    #       "modplugin.settings.view", and so on.
    #
    ##
    #   A single asterisk means that this user/group has all permissions.
    #       - '*'
    ##
    #   Negated nodes are created by prefixing a normal node with "-".
    #   They prevent less specific wildcard nodes from matching the negated node.
    #   For example:
    #
    #   permissions:
    #       - 'foo.*'
    #       - '-foo.bar'
    #
    #   In this case, the user/group will have "foo.foo", "foo.foobar", and so on, but not "foo.bar".
    #
    ##
    #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
    #   such as iChat or HeroChat in order for these to do anything.
    ##
    #
    #   For more info, visit [URL]https://github.com/TheYeti/Permissions/wiki/Guide-to-creating-YAML-configs[/URL]
    #
    ##
    groups:
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: false
            inheritance:
            permissions:
               - 'foo.bar'
               - 'bar.foo'
        Member:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'warpplugin.warp'
                - 'econplugin.basic.*'
                - 'lc.shout'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Member
            permissions:
                - 'modplugin.ban'
                - 'modplugin.kick'
                - 'modplugin.unban'
        Admins:
            default: false
            info:
                prefix: '[ADMINS]'
                suffix: ''
                build: true
            inheritance:
            permissions:
                - '*'
        Owner:
            default: false
            info:
                prefix: '[EPIC ADMIN]'
                suffix: '[SERVER OWNER]'
                build: true
            inheritance:
                - Admins
            permissions:
                - '*'
    
    globalUsers:
    Code:
    users:
        TheServerOwner:
            groups:
            - Admins
            permissions:
        FriendA:
            info:
                prefix: '&4[~Alice~]&f'
            groups:
            - Moderator
            permissions:
        FriendB:
            groups:
            - Moderator
            permissions:
            - warpplugin.manage.*
        NewGuy:
            groups:
            - Guest
        Herpina:
            groups:
            - Member
        Derpina:
            groups:
            - Member
        HolySagar:
            groups:
            - Owner
    
    For some reason my permissions.yml file in the .craftbukkit folder is empty.
    I just started using this so I'm a newbie at this.
     
  4. Offline

    Crimsonfox

    Your permissions.yml in the Craftbukkit folder will be empty unless you put something in it, it's to do with the new built in permissions in Bukkit. It won't be the cause of this problem so don't worry.

    Also you should ideally post your configs within CODE tags, it keeps the formatting then which is quite essential when using YML files. If you could edit or repost that would be great.

    Also any errors coming up in your log file to, last but not least, your plugin list as well.
     
  5. Offline

    TechnoGamer

    I made it with the code tags.
    I don't get any errors :(
     
  6. Offline

    strontkever

    try permissions 2.7.4
     
  7. Offline

    TechnoGamer

    I even tried to delete permissions. No luck.

    Heck a plain bukkit server with no plugins doesnt work either

    GOT IT TO WORK :D :D
    For any newbies like me, here's what I did:
    1. Go to bukkit.yml
    2. Change spawn radius to 0 for now.
    3. save.
    4. run server.
    5. enjoy
    Just make sure to change the radius back after you build some thing (like a spawn area).

    Never mind. That only worked when permissions was un-installed.

    Any help?

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

    Jhwx

    Wow, You have Build set to false!!
    Build: False Set it to true!
     
Thread Status:
Not open for further replies.

Share This Page