Protecting Worlds.

Discussion in 'Bukkit Help' started by SP_Brianna, Sep 16, 2012.

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

    SP_Brianna

    I'm running a bukkit MC server and I've made many secondary worlds. There is one called Memorial Site that I've made where certain members can go in there and build.

    Basically I wanted so that the default usergroup can go into the world (which I have with multiverse) but they can't place and or destroy blocks in the world, but be able to go to other worlds an not affect them in anyway.

    I've been searching around, but haven't come up with any luck on how to do this.
     
  2. Offline

    kennylax12

    Look into multiworld permissions. Use either permissionsEx or bPermissions, both are great plugins.
     
  3. Offline

    SP_Brianna

    I believe I am using PermissionEX because it was recommended by many, I just not sure how to input it so that it will work.
     
  4. Offline

    kennylax12

  5. Offline

    SP_Brianna

    This is basically my code to my Default Group, I've tried to read up on it, but how would I correctly place it so they can't edit an place blocks in the world I don't want them too?

    Code:
    groups:
        Default:
            default: true
            permissions:
              - 'essentials.spawn'
              - 'essentials.help'
              - 'commandbook.spawn'
              - 'essentials.motd'
              - 'essentials.msg'
              - 'essentials.ping'
              - 'essentials.rules'
              - 'essentials.tpaccept'
              - 'essentials.afk'
              - 'essentials.compass'
              - 'essentials.list'
              - 'essentials.tpdeny'
              - 'multiverse.portal.access.sayuri'
              - 'multiverse.portal.access.thesurvivalgames'
              - 'multiverse.portal.access.netherarena'
              - 'multiverse.portal.access.*'
            inheritance:
              - ''
            prefix: '[Default]'
            suffix: ''
     
  6. Offline

    kennylax12

    Code:
    groups:
        Default:
            default: true
            permissions:
              - 'essentials.spawn'
              - 'essentials.help'
              - 'commandbook.spawn'
              - 'essentials.motd'
              - 'essentials.msg'
              - 'essentials.ping'
              - 'essentials.rules'
              - 'essentials.tpaccept'
              - 'essentials.afk'
              - 'essentials.compass'
              - 'essentials.list'
              - 'essentials.tpdeny'
              - 'multiverse.portal.access.sayuri'
              - 'multiverse.portal.access.thesurvivalgames'
              - 'multiverse.portal.access.netherarena'
              - 'multiverse.portal.access.*'
            inheritance:
              - ''
            prefix: '[Default]'
            suffix: ''
            worlds:
              world2:
                permissions:
                - -modifyworld.*
              world3:
                permissions:
                - modifyworld.*
    Something along those lines. Of course you would need to change the world names to those that your server is running. Also make sure you have read: https://github.com/PEXPlugins/PermissionsEx/wiki/Modifyworld to fully understand the potential of the Modifyworld plugin bundled with PermissionsEx.
     
Thread Status:
Not open for further replies.

Share This Page