Last active
November 16, 2015 22:18
-
-
Save CrazyDutchBoy/d8744e06bb3a67acc286 to your computer and use it in GitHub Desktop.
Basic Permissionsex template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #This is a basic permissions template for a minecraft server | |
| #Change all text so it apply's to your server! | |
| groups: #this defines the groups part of the permissions file. | |
| Default: #this is the default group. | |
| permissions: #this defines the permissions part of the group. | |
| - UrPermissions #these are your permissions. | |
| - | |
| - modifyworld.* #at the bottom. | |
| options: #these are ur options. | |
| rank: '1000' #this is used in rankup systems. (ranks go from high to low) | |
| prefix: 'Prefix' #this is the prefix for your default group. | |
| suffix: 'Suffix' #this is the suffix for your default group. | |
| default: true #this defines the group people join when they first join the server. | |
| Rank1: #next rank. | |
| permissions: | |
| - PermissionsRank1 | |
| inheritance: #this defines which groups to inherit permissions from. | |
| - Default #group Rank1 inherits all permissions from Default. | |
| options: | |
| rank: '900' | |
| prefix: 'Prefix' | |
| suffix: 'Suffix' | |
| Rank2: | |
| permissions: | |
| - PermissionsRank2 | |
| - -Inherited Perms U Don't Want #like kits from other ranks and stuff. | |
| inheritance: | |
| - Rank1 #group Rank2 inherits all permissions from Rank1 and Default. | |
| options: | |
| rank: '800' | |
| prefix: 'Prefix' | |
| suffix: 'Suffix' | |
| Mod: | |
| permissions: | |
| - PermissionsModerators | |
| inheritance: | |
| - Rank1 | |
| options: | |
| prefix: 'Prefix' | |
| suffix: 'Suffix' | |
| Admin: | |
| permissions: | |
| - PermissionsAdministrators | |
| inheritance: | |
| - Moderator | |
| - Rank2 | |
| options: | |
| prefix: 'Prefix' | |
| suffix: 'Suffix' | |
| Users: #this defines the users part of the permissions. | |
| UsernameOwner: | |
| permissions: | |
| - '*' #this gives this user ALL permissions of ALL plugins | |
| options: | |
| prefix: 'Prefix' | |
| suffix: 'Suffix' | |
| #If you have Questions feel free to e-mail me at ericmiedema96@gmail.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment