Remove OP's ability to bypass worldguard regional blocked commands

Discussion in 'Bukkit Help' started by clange0808, Feb 10, 2014.

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

    clange0808

    Hello.

    This is quite a complicated problem. In my parkour I have disabled commands for a region (The parkour region) but OPS can bypass this and still execute these commands. Is there a way to fix this? I know this sounds kind of complicated but if anyone can help I would appreciate it.

    Thanks!
     
  2. Offline

    TreeDB

    clange0808

    http://wiki.sk89q.com/wiki/WorldGuard/Permissions

    You can always try doing
    /pex user <username> add -worldguard.region.bypass.<world> or /pex user <username> add -worldguard.region.bypass.*

    for PermissionsEx or

    /manuaddp <username> add -worldguard.region.bypass.<world> or /manuaddp <username> add -worldguard.region.bypass.*

    for group manager
     
  3. Offline

    clange0808

  4. Offline

    TreeDB

    clange0808 I would make sure that ops don't override permission nodes, that seems to be what is happening.

    PermissionsEx (config.yml) :
    make sure
    Code:
    ...
        allowOps: true
    
    is
    Code:
    ...
        allowOps: false
    
    Group Manager (config.yml) :
    make sure
    Code:
    settings:
      config:
        # With this enabled anyone set as op has full permissions when managing GroupManager
        # The user will be able to promote players to the same group or even above.
        opOverrides: true
    
    is
    Code:
    settings:
      config:
        # With this enabled anyone set as op has full permissions when managing GroupManager
        # The user will be able to promote players to the same group or even above.
        opOverrides: false
    
     
Thread Status:
Not open for further replies.

Share This Page