A little Minecraft Help


Recommended Posts

I am trying to set up the permissions ex file for my personal minecraft server and don't really know what im doing i have a basic structure which looks like this 

 

 

groups:

  default:
    options:
      default: true
      prefix: '&8[&7Novice&8]&f '
      suffix: '&f'
    permissions:
    - modifyworld.*
    worlds:
      '5':
        permissions:
        - essentials.sethome
  expert:
    inheritance:
    - apprentice
    options:
      prefix: '&e[&6Expert&e]&f '
      suffix: '&6'
    permissions:
    - essentials.fly.safelogin
    - essentials.fly
    worlds:
      '5':
        permissions:
        - essentials.sethome
      '10':
        permissions:
        - essentials.sethome
      '20':
        permissions:
        - essentials.sethome
  apprentice:
    inheritance:
    - default
    options:
      prefix: '&3[&5Apprentice&3]&f '
      suffix: '&5'
    worlds:
      '10':
        permissions:
        - essentials.sethome
  owner:
    inheritance:
    - expert
    options:
      prefix: '&0[&4Owner&0]&f '
      suffix: '&4'
    permissions:
    - '*'
schema-version: 1
users:
  771d1bba-17b4-4f0a-9e24-940f51eda565:
    permissions:
    - '*'
    options:

      na

 

I was wanting the groups to be able to do /sethome , /home , /spawn , /help , /nick 

 

for the Novice group i wanted them to only be able to set 5 homes

for the Apprentice group i wanted them to be able to set 10 homes

for the Expert group i wanted them to be able to set 20 homes

 

also I want the groups, when they type in chat, to have their groups name display next to their ign or nick in the following way [Novice] <Player Name>

 

thanks for any help it is really appreciated

Link to comment
Share on other sites

I haven't used PEX before but looking through the setup I dont see a group assigned to your UUID, the example shows

 

users:
  AnotherPlayer:
    group:
    - default
  YourPlayerName:
    group:
    - Admin 

 

replace the old player name bit with UUID too :p

 

I would probably try removing

 

permissions:    

- '*'

 

as that might give you all access regardless of which group you are in, and maybe de-op yourself while testing as essentials gives OPs all permissions by default.:)

Link to comment
Share on other sites

woops i didnt post all of it 

 

this is the full thing

 

groups:

  default:
    options:
      default: true
      prefix: '&8[&7Novice&8]&f '
      suffix: '&f'
    permissions:
    - modifyworld.*
    worlds:
      '5':
        permissions:
        - essentials.sethome
  expert:
    inheritance:
    - apprentice
    options:
      prefix: '&e[&6Expert&e]&f '
      suffix: '&6'
    permissions:
    - essentials.fly.safelogin
    - essentials.fly
    worlds:
      '5':
        permissions:
        - essentials.sethome
      '10':
        permissions:
        - essentials.sethome
      '20':
        permissions:
        - essentials.sethome
  apprentice:
    inheritance:
    - default
    options:
      prefix: '&3[&5Apprentice&3]&f '
      suffix: '&5'
    worlds:
      '10':
        permissions:
        - essentials.sethome
  owner:
    inheritance:
    - expert
    options:
      prefix: '&0[&4Owner&0]&f '
      suffix: '&4'
    permissions:
    - '*'
schema-version: 1
users:
  771d1bba-17b4-4f0a-9e24-940f51eda565:
    permissions:
    - '*'
    options:
      name: mmagoo1322
    group:
    - owner
  41684088-8920-488a-98aa-495fb1cce489:
    permissions:
    - '*'
    options:
      name: jhopp1996
    group:
    - apprentice
  f8d631f0-be4a-4fc9-8c95-1e4202f0b424:
    group:
    - apprentice
    options:
      name: cmmeeks18
  d83d0768-6ed1-4da7-88f2-a956ec9ef48f:
    group:
    - expert
    options:
      name: WolfRexGalaxy

Link to comment
Share on other sites

This topic is now closed to further replies.