I have recently moved my server from simple server to bukkit and I am having trouble with the permissions plugin. I'm running on a Mac with snow leopard and my current plugins are: permissions, iConomy, All of the Essentials plugins, simple nether, MoveCraft, Multiverse, DeathMessage, Stargate, and runecraft. I am not able to get any of the commands to work. Please show me what I am doing wrong. I will post my world.yml below. Code: # System is no longer used, but may become used in the future # Copies is for multiple-world support # Put the name of the world you wish for it to be a clone of, otherwise leave it empty. # If this file is for your default world (the one in server.properties) then you must # leave copies blank. # Example: copies: Derp - This will clone the permissions of the world Derp # # Make sure to rename this file to the name of the world that is in sever.properties under # level-name. So if it is level-name: world then this should be world.yml and in the # plugins/Permissions directory (ie. plugins/Permissions/world.yml) # # NOTE: Do not use tabs while editing this document. Use only spaces. A good way to avoid # doing this is to use Notepad++ and replace the tab with 4 spaces. plugin: permissions: system: default copies: ## # AntiBuild is included with this. To disable a group from being able to build 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 contain inheritance. # To make a group inherit the permissions from another # group simply place the groups name in the "inheritance:" like so: # # Example: # inheritance: # - Default ## # All permissions including the asterisks must be placed in single quotes. # like so: # # - 'foo.bar' # # Otherwise errors will happen! ## # Globalized Permission settings: # # If a permission contains periods (.) you can denote a globalized parameter: # # - 'foo.*' # # This will allow you to use all general commands. # ## # Single Asterisk denotes all commands: # # - '*' # If you give a group this permissions, do not have the group inherit any permissions # from other groups. Any users assigned to this group should NOT be given any additional # permissions either. ## # To exempt a node use the - prefix like so: # - '-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. groups: Default: default: true info: prefix: '' suffix: '' build: true inheritance: permissions: - 'essentials.*' - '-multiverse.*' Moderator: default: false info: prefix: '' suffix: '' build: true inheritance: - Default permissions: Admins: default: false info: prefix: '' suffix: '' build: true inheritance: permissions: - '*' ## # Users denote which users are included in which group. # TheNo1Yeti is in the Admin group # Herpina is a member of the Moderator group but also has access # to the herp.derp permissions # Derpina is a member of the admin group but does not have access # to the derp.derp permission node # Users can also have a prefix and suffix as seen with Herpina ## users: TheNo1Yeti: group: Admins permissions: Herpina: group: Moderator info: prefix: 'Moo' suffix: 'Cow' permissions: - 'herp.derp' Derpina: group: Admins permissions: - '-derp.derp' jujustick: group: Admins permissions: - '-multiverse.*' [CODE] In my world.yml there are the correct number of spaces, but for some reason the bukkit forums take them out. EDIT by Moderator: merged posts, please use the edit button instead of double posting.
Surrounding it in [CODE] tags will fix that. What exactly is the problem? I notice you have a stray '-' in your multiverse permissions.
The problem is it simply doesn't work. The permissions i've entered are not working for the default class. I've tried starting from a new world.yml but it didn't work. BTW thanks Edward for the help with the code thing.
You dont have to write the permissions again under each user. Try this file (i edited yours) Code: # System is no longer used, but may become used in the future # Copies is for multiple-world support # Put the name of the world you wish for it to be a clone of, otherwise leave it empty. # If this file is for your default world (the one in server.properties) then you must # leave copies blank. # Example: copies: Derp - This will clone the permissions of the world Derp # # Make sure to rename this file to the name of the world that is in sever.properties under # level-name. So if it is level-name: world then this should be world.yml and in the # plugins/Permissions directory (ie. plugins/Permissions/world.yml) # # NOTE: Do not use tabs while editing this document. Use only spaces. A good way to avoid # doing this is to use Notepad++ and replace the tab with 4 spaces. plugin: permissions: system: default copies: ## # AntiBuild is included with this. To disable a group from being able to build 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 contain inheritance. # To make a group inherit the permissions from another # group simply place the groups name in the "inheritance:" like so: # # Example: # inheritance: # - Default ## # All permissions including the asterisks must be placed in single quotes. # like so: # # - 'foo.bar' # # Otherwise errors will happen! ## # Globalized Permission settings: # # If a permission contains periods (.) you can denote a globalized parameter: # # - 'foo.*' # # This will allow you to use all general commands. # ## # Single Asterisk denotes all commands: # # - '*' # If you give a group this permissions, do not have the group inherit any permissions # from other groups. Any users assigned to this group should NOT be given any additional # permissions either. ## # To exempt a node use the - prefix like so: # - '-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. groups: Default: default: true info: prefix: '' suffix: '' build: true inheritance: permissions: - 'essentials.*' - '-multiverse.*' Moderator: default: false info: prefix: '' suffix: '' build: true inheritance: - Default permissions: Admins: default: false info: prefix: '' suffix: '' build: true inheritance: permissions: - '*' ## # Users denote which users are included in which group. # TheNo1Yeti is in the Admin group # Herpina is a member of the Moderator group but also has access # to the herp.derp permissions # Derpina is a member of the admin group but does not have access # to the derp.derp permission node # Users can also have a prefix and suffix as seen with Herpina ## users: TheNo1Yeti: group: Admins permissions: Herpina: group: Moderator info: prefix: 'Moo' suffix: 'Cow' permissions: Derpina: group: Admins permissions: jujustick: group: Admins permissions:
since there is already a post about someone having trouble with permissions. I just need the iconomy chest shop to be set up where I the admin can make a shop "game shop" and then the users can buy from the shop I set up. I am lost have tried reading and my eyes blur and all I see is a block of horrific text... kinda feels like fighting glitched slimes. save me! maybe one of you have it have it set up already like this and can post it to where I can copy paste instead of have a brainmeltdown.
Thank you so much andre This is strange. Now some commands work but others dont. for instance /motd and / rules work, but /home and /afk don't. EDIT by Moderator: merged posts, please use the edit button instead of double posting.