YAML issues? Permissions issues/need to upgrade? Look here!

Discussion in 'Bukkit Help' started by Darq, Oct 19, 2011.

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

    Darq

    Hello, Bukkit Community!

    I spend the majority of my time on the Bukkit forums browsing the help section, helping people with what I can, and it's safe to say that a LOT of the time, problems are simple user error with permissions systems, or other YML errors.

    So, I'm going to offer a free service

    If your server is suffering from errors that you can't fix in your YML configs, or you need to update your Permissions manager, but don't understand one of the new systems or just can't get them to work, then you have come to the right place.

    Services I provide free of charge are listed below.

    Permissions system changes/upgrades:
    System listed below >> bPermissions
    System listed below >> PermissionsEx
    System listed below >> PermissionsEx SQL Mode
    System listed below >> PermissionsBukkit

    Permissions managers I will move from to one of the above: Permissions 2, Permissions 3, GroupManager, bPermissions, PermissionsEx, and PermissionsBukkit. (More will be added as I become familiar with them).

    Basic YML:
    YML file error fixing
    YML file cleanup (Permissions files can get real messy, real quick.)

    Plugin help:
    I'll do some basic trouble shooting for anyone that asks politely. I encourage you to exhaust all other options before asking me for help.
    Basic configuration help with PermissionsEx, ModifyWorld, ChatManager, bPermissions, bPermissionsWebGUI~

    Things I will not do:
    Configure your plugins from scratch
    Set up your permissions, from scratch.
    Convert your permissions to GroupManager
    Tell you how to use a plugin.

    Simply reply to this thread telling me what you want done, and any other information I may need.
    When posting YML configurations, use CODE (learn how to use CODE tags here) tags, or give me links to your files at Pastebin or Pastie.

    Thank you!

    If I have helped you with your permissions, consider donating! :)
    [​IMG]

    -Thanks to 123vinny456 for donating $10
    -Thanks to TOM1234 for donating $5
     
    Iroh and undeadmach1ne like this.
  2. Offline

    Quackstar

    My permissions are not working for plugins I install. Do you know what I am doing wrong? I'm a newb.. kind of


    http://pastebin.com/xGFWjkYy

    the point is the people on the server can do everything when they're op, but I dont want them to be op but just have these permissions..
     
  3. Offline

    Darq

    @Quackstar Well you didn't give me the required info, but I'll let that slide.

    You file was littered with tabs and unnecessary break lines. There shouldn't be a single line in the file that is blank. You also left permissions that were just example from the PermissionsBukkit thread, anywho, I cleaned up the errors, and took out the pointless examples:
    Code:
    # PermissionsBukkit configuration file
    #
    # A permission node is a string like 'permissions.build', usually starting
    # with the name of the plugin. Refer to a plugin's documentation for what
    # permissions it cares about. Each node should be followed by true to grant
    # that permission or false to revoke it, as in 'permissions.build: true'.
    # Some plugins provide permission nodes that map to a group of permissions -
    # for example, PermissionsBukkit has 'permissions.*', which automatically
    # grants all admin permissions. You can also specify false for permissions
    # of this type.
    #
    # Users inherit permissions from the groups they are a part of. If a user is
    # not specified here, or does not have a 'groups' node, they will be in the
    # group 'default'. Permissions for individual users may also be specified by
    # using a 'permissions' node with a list of permission nodes, which will
    # override their group permissions. World permissions may be assigned to
    # users with a 'worlds:' entry.
    #
    # Groups can be assigned to players and all their permissions will also be
    # assigned to those players. Groups can also inherit permissions from other
    # groups. Like user permissions, groups may override the permissions of their
    # parent group(s). Unlike users, groups do NOT automatically inherit from
    # default. World permissions may be assigned to groups with a 'worlds:' entry.
    #
    # The cannot-build message is configurable. If it is left blank, no message
    # will be displayed to the player if PermissionsBukkit prevents them from
    # building, digging, or interacting with a block. Use '&' characters to
    # signify color codes.
    
    users:
        Quackster:
            permissions:
            groups:
            - admin
        Jane:
            permissions:
            groups:
            - user
        craftingbaas:
            permissions:
            groups:
            - user
        Nylsoo:
            permissions:
            groups:
            - user
        BlueFlameNL:
            permissions:
            groups:
            - user
        purschuimpje:
            permissions:
            groups:
            - user
    groups:
        default:
            permissions:
                permissions.build: false
        admin:
            permissions:
                permissions.*: true
                creaturebox.set: true
                creaturebox.give: true
                creaturebox.creature: true
                creaturebox.period: true
                creaturebox.count: true
                creaturebox.limit: true
                creaturebox.requires: true
                creaturebox.dropspawner: true
                creaturebox.placespawner: true
            inheritance:
            - user
        user:
            permissions:
                permissions.build: true
                creaturebox.dropspawner: true
                creaturebox.placespawner: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  4. Offline

    Quackstar

    Thanks! I just tested it.. it doesnt give the same error as before, but I still can't place any mob spawners when I'm not op..

    [​IMG]

    When I'm op, people can place them tho.. but when they are op they can also tp etc
     
  5. Offline

    Darq

    I don't set up permissions for people, I remove the errors. I'm not familiar with the creaturebox plugin so if you're using the wrong nodes for it, don't know what to tell you.
     
  6. Offline

    Quackstar

    Alright, well thank you for your help! I'll try to find a solution for this specific plugin somewhere else :)
     
  7. Offline

    123vinny456

    # 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 https://github.com/TheYeti/Permissions/wiki/Guide-to-creating-YAML-configs
    #
    ##

    groups:
    Guest:
    default: false
    info:
    prefix: '&0'
    suffix: '&0'
    build: true
    inheritance:
    Terranovian:
    default: true
    info:
    prefix: '&2'
    suffix: '&2'
    build: true
    inheritance:
    - Default
    permissions:
    - 'warpplugin.warp'
    - 'econplugin.basic.*'
    - 'ChestShop.shop.create'
    - 'ChestShop.shop.sell'
    - 'ChestShop.shop.buy'
    - 'towny.town.resident'
    - 'towny.town.rename'
    - 'towny.town.plot'
    - 'towny.town.new'
    - 'towny.town.delete'
    - 'towny.town.claim'
    - 'towny.town.spawn.town'
    - 'towny.nation.delete'
    - 'towny.nation.grant-titles'
    - 'towny.nation.new'
    - 'towny.nation.rename'
    - 'towny.chat.town'
    - 'towny.chat.nation'
    - 'towny.wild.*'
    - 'preciousstones.benefit.create.protection'
    - 'essentials.kit.Starter'
    Mod:
    default: false
    info:
    prefix: '&1'
    suffix: '&1'
    build: true
    inheritance:
    - Member
    permissions:
    - 'modplugin.ban'
    - 'modplugin.kick'
    - 'modplugin.unban'
    - 'warpplugin.warp'
    - 'econplugin.basic.*'
    - 'ChestShop.shop.create'
    - 'ChestShop.shop.sell'
    - 'ChestShop.shop.buy'
    - 'towny.town.resident'
    - 'towny.town.rename'
    - 'towny.town.plot'
    - 'towny.town.new'
    - 'towny.town.delete'
    - 'towny.town.claim'
    - 'towny.town.spawn.town'
    - 'towny.nation.delete'
    - 'towny.nation.grant-titles'
    - 'towny.nation.new'
    - 'towny.nation.rename'
    - 'towny.chat.town'
    - 'towny.chat.nation'
    - 'towny.wild.*'
    Admin:
    default: false
    info:
    prefix: '&4'
    suffix: '&4'
    build: true
    inheritance:
    permissions:
    - '*'
    OWNER:
    default: false
    info:
    prefix: '&3'
    suffix: '&3'
    build: true
    inheritance:
    permissions:
    - '*'
     
  8. Offline

    codename_B

    Hey Darq, great service you're providing here :) would you be interested in joining the bPermissions support team?
     
  9. Offline

    Darq

    @123vinny456 Could you please use Pastebin for that, or the Code tags?
    @codename_B I'll fire up a conversation with you.
     
  10. Offline

    iMinecrafter

    Hello!

    May we use an application named ''Teamviewer''? I feel it a bit hard to describe my problem. I can't really solve how I should make the prefixes. It's an extra < or extra ( before the names. And I don't know how to add colours.

    Thank you,
    Crafter.
     
  11. Offline

    Darq

    @iMinecrafter PM me your Teamviewer info.
    Or, just give me your Permissions file, and your chat manager file.
     
  12. Offline

    iMinecrafter

    Pm'd you, thank you! :)
     
  13. Offline

    123vinny456

  14. Offline

    Darq

    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 https://github.com/TheYeti/Permissions/wiki/Guide-to-creating-YAML-configs
    #
    ##
    
    groups:
        Guest:
            default: false
            info:
                prefix: '&0'
                suffix: '&0'
                build: true
            inheritance:
        Terranovian:
            default: true
            info:
                prefix: '&2'
                suffix: '&2'
                build: true
            inheritance:
                - Default
            permissions:
                - 'warpplugin.warp'
                - 'econplugin.basic.*'
                - 'ChestShop.shop.create'
                - 'ChestShop.shop.sell'
                - 'ChestShop.shop.buy'
                - 'towny.town.resident'
                - 'towny.town.rename'
                - 'towny.town.plot'
                - 'towny.town.new'
                - 'towny.town.delete'
                - 'towny.town.claim'
                - 'towny.town.spawn.town'
                - 'towny.nation.delete'
                - 'towny.nation.grant-titles'
                - 'towny.nation.new'
                - 'towny.nation.rename'
                - 'towny.chat.town'
                - 'towny.chat.nation'
                - 'towny.wild.*'
                - 'preciousstones.benefit.create.protection'
                - 'essentials.kit.Starter'
        Mod:
            default: false
            info:
                prefix: '&1'
                suffix: '&1'
                build: true
            inheritance:
                - Member
            permissions:
                - 'modplugin.ban'
                - 'modplugin.kick'
                - 'modplugin.unban'
                - 'warpplugin.warp'
                - 'econplugin.basic.*'
                - 'ChestShop.shop.create'
                - 'ChestShop.shop.sell'
                - 'ChestShop.shop.buy'
                - 'towny.town.resident'
                - 'towny.town.rename'
                - 'towny.town.plot'
                - 'towny.town.new'
                - 'towny.town.delete'
                - 'towny.town.claim'
                - 'towny.town.spawn.town'
                - 'towny.nation.delete'
                - 'towny.nation.grant-titles'
                - 'towny.nation.new'
                - 'towny.nation.rename'
                - 'towny.chat.town'
                - 'towny.chat.nation'
                - 'towny.wild.*'
        Admin:
            default: false
            info:
                prefix: '&4'
                suffix: '&4'
                build: true
            inheritance:
            permissions:
                - '*'
        OWNER:
            default: false
            info:
                prefix: '&3'
                suffix: '&3'
                build: true
            inheritance:
            permissions:
                - '*'
    You had some random indents after a permissions. Use this: http://yaml-online-parser.appspot.com/
     
  15. Offline

    iMinecrafter

    Thank you for the help! This guy knows what's he's doing. Very friendly and very skilled.

    Just a side question that I forgot to ask:
    When I do /who their names aren't coloured. Is there a way to fix this?
     
  16. Offline

    Darq

    Depends on the plugin you have that handles /who, if you use CommandBook, the names won't be coloured. WhosThere or OKChat both will have coloured names in /who
     
  17. Offline

    iMinecrafter

    Essen
    Essentials
     
  18. Offline

    Darq

    Eh, dunno. I haven't used Essentials in a long long time. If it doesn't work, my only recommendation is to get one of the plugins I listed or even something else if you can find it.

    For general commands, I really do suggest that you just use CommandBook though.
     
  19. Offline

    iMinecrafter

    Thank you, I'll check out this ''CommandBook'' :)
     
  20. Offline

    alex4108

  21. Offline

    Darq

    Code:
    users:
        Your-name-here:
            group:
            - Player
    groups:
        -[rG]-:
            prefix: '&3'
            permissions:
            - '*'
        Player:
            default: true
            prefix: '&4'
        ={rG}=:
            prefix: '&6'
            permissions:
            - '*'
        -{rG}-:
            prefix: '&d'
            permissions:
            - '*'
        -|rG|-:
            prefix: '&e'
        =[rG]=:
            prefix: '&1'
            permissions:
            - '*'
        '{rG}':
            prefix: '&5'
            permissions:
            - '*'
        '[rG]':
            prefix: '&2'
    
    I'm not sure if you forgot a users file, or simply didn't have one to convert. :)

    Either way, the above will work on PermissionsEx
     
  22. Offline

    austin_98

    Permissions EX:
    Needs correcting. Cause I=noob
    Permissions file not working. /plugins/permissionsEX/permissions.yml
    http://pastebin.com/KUhnRFnJ
     
  23. Offline

    mast3rpyr0

    Just a question, and maybe I'll take advantage of your service when I get around to do this, but is Permissions 3.1.6 the only/best plugin that supports using a MySql Database? Or is there a better way to interface with website group management?
     
  24. Offline

    Darq

    @austin_98 I'll get right to it.
    @mast3rpyr0 The entire point of this thread is to encourage people to move away from Permissions 3.1.6 :3 For a MySQL backend, PermissionsEx would be your right choice.
     
  25. Offline

    austin_98

  26. Offline

    mast3rpyr0

    @Darq alright thanks! I'll try my luck with this plugin first since I have to transfer from GM.
     
  27. Offline

    Darq

    Removed all old Permissions syntax, cleaned up the file and bit, and made sure it passes parsing, it's ready for PermissionsEx

    Code:
    users:
        Austin_98:
            group:
            - Server Owner
            permissions:
            - permissions.*
            worlds:
                world:
                    permissions:
                    - essentials.time
                    group:
                    - Default
                    prefix: '&4'
        Shamwow10101:
            group:
            - Admin
            permissions:
            - permissions.*
            worlds:
                world:
                    permissions:
                    - essentials.time
                    prefix: '&4'
        Skaskaskaska:
            group:
            - Moderator
            permissions:
            - permissions.*
            worlds:
                world:
                    permissions:
                    - essentials.time
                    prefix: '&4'
    groups:
        Guest:
            default: true
            permissions:
            - foo.bar
            - mywarp.warp
            - essentials.tpa
            - essentials.who
            - essentials.tpaccept
            - essentials.tpa
            - essentials.tpdeny
            - essentials.back
            - essentials.who
        User:
            permissions:
            - foo.bar
            - mywarp.warp
            - essentials.tpa
            - essentials.who
            - essentials.tpaccept
            - essentials.tpa
            - essentials.tpdeny
            - essentials.back
            - essentials.who
        Donator:
            inheritance:
            - User
            permissions:
            - bar.foo
            - lottery.buy
            - warpz0r.sethome
            - warpz0r.home
            - minecraft.give
            - godPowers.superjump
            - warpz0r.warp
            - lockette.user.create.
            - lockette.user.create.*
            - multiverse.tp
            - essentials.give
            - essentials.warp
            - essentials.give
            - signlift.use.normal
            - essentials.give.item-all
            - essentials.itemspawn.item-all
            - iConomy.access
            - iConomy.payment
            - iConomyChestShop.shop.buy
            - iConomyChestShop.shop.sell
            - minecraft.list
            - essentials.item
            - multiverse.tp
            - essentials.tpa
            - lockette.user.create.*
            - voxel.more
            - essentials.sethome
            - factions.participate
            - factions.create
            - heroes.classes.*
            - heroes.classes.class-name-in-all-lowercase
            - essentials.home
            - essentials.spawn
            - iConomy.access
            - iConomy.payment
            - essentials.who
            - essentials.time.world
            - essentials.time.others
            - essentials.time
        Pro-Donator:
            prefix: '&6'
            permissions:
            - minecraft.give
            - minecraft.time.set
            - warpz0r.sethome
            - warpz0r.home
            - movecraft.aircraft.*
            - movecraft.car.*
            - iConomyChestShop.shop.buy
            - worldedit.superpickaxe
            - worldedit.fill
            - worldedit.set
            - worldedit.butcher
            - worldedit.remove
            - worldguard.region.define
            - worldguard.region.info
            - worldguard.region.remove
            - worldguard.region.addowner
            - worldguard.region.addmember
            - worldguard.region.removemember
            - worldguard.region.removeowner
            - worldedit.selection.expand
            - worldedit.wand.toggle
            - worldguard.god
            - worldedit.wand.toggle
            - worldedit.superpickaxe.drawing.brush.sphere
            - worldedit.superpickaxe.drawing.brush.cylinder
            - worldedit.superpickaxe.drawing.brush.clipboard
            - worldedit.chunkinfo
            - worldedit.superpickaxe.drawing.brush.sphere
            - worldedit.superpickaxe.drawing.brush.cylinder
            - worldedit.superpickaxe.drawing.brush.clipboard
            - worldedit.chunkinfo
            - worldedit.listchunks
            - worldedit.delchunks
            - worldedit.clipboard.clear
            - worldedit.clipboard.load
            - worldedit.clipboard.save
            - worldedit.clipboard.copy
            - factions.participate
            - factions.create
            - heroes.classes.*
            - heroes.classes.class-name-in-all-lowercase
            - worldedit.clipboard.flip
            - worldedit.clipboard.rotate
            - worldedit.clipboard.cut
            - worldedit.clipboard.paste
            - worldedit.limit
            - worldedit.generation.cylinder
            - worldedit.generation.cylinder
            - worldedit.generation.sphere
            - worldedit.generation.sphere
            - worldedit.generation.forest
            - worldedit.generation.pumpkins
            - worldedit.history.clear
            - worldedit.history.redo
            - worldedit.history.undo
            - worldedit.navigation.ascend
            - worldedit.navigation.thru
            - worldedit.navigation.jumpto
            - worldedit.navigation.ceiling
            - worldedit.navigation.up
            - worldedit.region.overlay
            - worldedit.region.walls
            - worldedit.region.faces
            - worldedit.region.smooth
            - worldedit.region.replace
            - worldedit.region.stack
            - worldedit.region.set
            - worldedit.region.move
            - worldedit.scripting.execute
            - worldedit.scripting.execute
            - worldedit.selection.chunk
            - worldedit.selection.pos
            - worldedit.selection.pos
            - worldedit.selection.hpos
            - worldedit.selection.hpos
            - worldedit.wand
            - worldedit.wand.toggle
            - worldedit.selection.contract
            - worldedit.analysis.distr
            - worldedit.analysis.count
            - worldedit.selection.size
            - worldedit.selection.shift
            - worldedit.selection.expand
            - worldedit.snapshots.restore
            - worldedit.snapshots.list
            - worldedit.snapshots.restore
            - worldedit.superpickaxe.pickaxe
            - worldedit.superpickaxe.pickaxe.area
            - worldedit.superpickaxe.replacer
            - worldedit.superpickaxe.data-cycler
            - worldedit.superpickaxe.drawing.brush
            - worldedit.superpickaxe.drawing.brush
            - worldedit.superpickaxe.pickaxe.recursive
            - worldedit.superpickaxe.info
            - worldedit.superpickaxe.pickaxe
            - worldedit.superpickaxe.tree
            - worldedit.fill.recursive
            - worldedit.fixlava
            - worldedit.fixwater
            - worldedit.removeabove
            - worldedit.removebelow
            - worldedit.removenear
            - worldedit.replacenear
            - worldedit.snow
            - worldedit.thaw
            - worldedit.extinguish
            - worldedit.butcher
            - worldedit.fill
            - worldedit.drain
            - worldedit.reload
            - essentials.time.world
            - essentials.time.others
            - essentials.time
            - worldedit.wand
            - essentials.give
            - essentials.give.item-all
            - essentials.itemspawn.item-all
            inheritance:
            - Donator
        Moderator:
            prefix: '&e'
            permissions:
            - bar.foo
            - iConomy.payment
            - minecraft.give
            - minecraft.time.set
            - warpz0r.sethome
            - warpz0r.home
            - permissions.promote.<track>
            - permissions.demote.<track>
            - permissions.demote
            - permissions.promote
            - movecraft.aircraft.*
            - movecraft.ship.*
            - movecraft.car.*
            - iConomyChestShop.shop.buy
            - worldedit.superpickaxe
            - worldedit.fill
            - worldedit.butcher
            - worldedit.remove
            - worldguard.region.define
            - worldguard.region.info
            - worldguard.region.remove
            - worldguard.region.addowner
            - worldguard.region.addmember
            - factions.participate
            - factions.create
            - heroes.classes.*
            - heroes.classes.class-name-in-all-lowercase
            - worldguard.region.removemember
            - worldguard.region.removeowner
            - worldedit.selection.expand
            - worldedit.wand.toggle
            - worldguard.god
            - worldedit.wand.toggle
            - worldedit.wand
            - iConomyChestShop.shop.sell
            - essentials.itemspawn.item-all
            - essentials.antioch
            - essentials.backup
            - essentials.ban
            - essentials.clearinventory.others
            - essentials.clearinventory
            - essentials.kick
            - essentials.kick.notify
            - essentials.setjail
            - essentials.spawnmob
            - essentials.socialspy
            - essentials.spawnmob
            - essentials.tempban
            - essentials.togglejail
            - essentials.unban
            - essentials.spawn
            - worldedit.superpickaxe.drawing.brush.sphere
            - worldedit.superpickaxe.drawing.brush.cylinder
            - worldedit.superpickaxe.drawing.brush.clipboard
            - worldedit.chunkinfo
            - worldedit.superpickaxe.drawing.brush.sphere
            - worldedit.superpickaxe.drawing.brush.cylinder
            - worldedit.superpickaxe.drawing.brush.clipboard
            - worldedit.chunkinfo
            - worldedit.listchunks
            - worldedit.delchunks
            - worldedit.clipboard.clear
            - worldedit.clipboard.load
            - worldedit.clipboard.save
            - worldedit.clipboard.copy
            - worldedit.clipboard.flip
            - worldedit.clipboard.rotate
            - worldedit.clipboard.cut
            - worldedit.clipboard.paste
            - worldedit.limit
            - worldedit.generation.cylinder
            - worldedit.generation.cylinder
            - worldedit.generation.sphere
            - worldedit.generation.sphere
            - worldedit.generation.forest
            - worldedit.generation.pumpkins
            - worldedit.history.clear
            - worldedit.history.redo
            - worldedit.history.undo
            - worldedit.navigation.ascend
            - worldedit.navigation.thru
            - worldedit.navigation.jumpto
            - worldedit.navigation.ceiling
            - worldedit.navigation.up
            - worldedit.region.overlay
            - worldedit.region.walls
            - worldedit.region.faces
            - worldedit.region.smooth
            - worldedit.region.replace
            - worldedit.region.stack
            - worldedit.region.set
            - worldedit.region.move
            - worldedit.scripting.execute
            - worldedit.scripting.execute
            - worldedit.selection.chunk
            - worldedit.selection.pos
            - worldedit.selection.pos
            - worldedit.selection.hpos
            - worldedit.selection.hpos
            - worldedit.wand
            - worldedit.wand.toggle
            - worldedit.selection.contract
            - worldedit.analysis.distr
            - worldedit.analysis.count
            - worldedit.selection.size
            - worldedit.selection.shift
            - worldedit.selection.expand
            - worldedit.snapshots.restore
            - worldedit.snapshots.list
            - worldedit.snapshots.restore
            - worldedit.superpickaxe.pickaxe
            - worldedit.superpickaxe.pickaxe.area
            - worldedit.superpickaxe.replacer
            - worldedit.superpickaxe.data-cycler
            - worldedit.superpickaxe.drawing.brush
            - worldedit.superpickaxe.drawing.brush
            - worldedit.superpickaxe.pickaxe.recursive
            - worldedit.superpickaxe.info
            - worldedit.superpickaxe.pickaxe
            - worldedit.superpickaxe.tree
            - worldedit.fill.recursive
            - worldedit.fixlava
            - worldedit.fixwater
            - worldedit.removeabove
            - worldedit.removebelow
            - worldedit.removenear
            - worldedit.replacenear
            - worldedit.snow
            - worldedit.thaw
            - worldedit.extinguish
            - worldedit.butcher
            - worldedit.fill
            - worldedit.drain
            - worldedit.reload
            - essentials.time.world
            - essentials.time.others
            - essentials.time
            inheritance:
            - Pro-Donator
        Admin:
            prefix: '&1'
            permissions:
            - '*'
        Server Owner:
            prefix: '&4'
            suffix: '&4'
            permissions:
            - '*'
     
  28. Offline

    austin_98

    AWESOME thanks so much... although I want to be able for some newbie to join and their prefix be set to &0[&2[Member&0] how could i do that?
     
  29. Offline

    Darq

    @austin_98 Guest is your default group, so do "/pex group Guest prefix &0[&2[Member&0]"
     
  30. Offline

    austin_98

    Ok thanks.

    I tried that and got "error in command syntax. check command help"

    I tried that and got "Error in command syntax. Check command help"
    don't know why this was reposted.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 20, 2016
Thread Status:
Not open for further replies.

Share This Page