37

CraftBukkit Plugin Tutorials: PermissionsEx (15,000+ Views) (Recommended by the plugin author!)

37 diamonds

  • 60,466
    Views, 32 today
  • 168
    Comments
  • 10
    Favorites
  • Flag / Report

Get Embed Code

Forum:
HTML:
Link:
avatar BENNETTMAN
Level 44 : Master Narwhal
Posted 10/05/11 2:38:18 pm , last updated: 12/20/11 1:41:17 pm
10/05/11

I NO LONGER GIVE SUPPORT ON THIS BLOG POST, IT IS OUTDATED. I WILL BE WRITING A NEW BPERMISSIONS TUTORIAL IN THE NEAR FUTURE.

CraftBukkit Plugin Tutorials


Plugin:
 PermissionsEx
Version: 1.17
Author: t3hk0d3
Works with: CraftBukkit 1.0.0-R1
Download: Here
Download tutorials files (Important!): Here
This tutorial has been recommended by the plugin author himself, so you know it's gonna work!
Check out the mention in the post: Here

I noticed a lot of people in the forums asking for help with their servers permissions set up.I decided to give a full a tutorial as possible on using the most powerful and efficient permissions system available, PermissionsEx.This plugin, along with ModifyWorld and ChatManager (which both come with PermissionsEx), gives you complete control over what goes on in your server.
Before we get started, i suggest you head over to this link, and download 'NotePad++', the best text editor work working with YML files.If you do not want to download this program, that is fine, but NotePad++ will make your life 10 times easier, and it is highly recommended.You will also need to download the files i have provided using the link provided in the description above.

Installing PermissionsEx

Head to the link at the top of this post, and scroll down the post. Download the 'Latest Development Version'.Once downloaded, open up the .zip folder in either WinRAR or 7zip.
You should have FIVE.jar files:
  • PermissionsEx
  • Permissions
  • ModifyWorld
  • ChatManager
  • PermissionsEx-javadoc
Extract these files into your servers plugins directory, making sure any old permissions system you use has been deleted.DO NOT EXTRACT THE 'PermissionsEx-javadoc.jar', this is only used if you are a craftbukkit plugin developer, javadocs are simply a library of explanations for the API.Run your server, and the plugins will generate the necessary files and folders needed to set up your permissions system.

Configuiring PermissionsEx

Once the server has finished loading, stop your server, and go to your plugins directory.You will now find there are four new folders, one for each of the .jar files your loaded into your server.
First of all, go to the '/plugins/PermissionsEx' folder, inside you will find a 'config.yml' and a 'permissions.yml'.Ignore the 'config.yml', you do not need to do anything with this.
Now, open up the 'UsingPermissionsEx.zip' folder you downloaded from the link at the top of the page.Inside you will find a file called 'permissions.yml'. You now need to replace the 'permissions.yml' in the /plugins/PermissionsEx directory, with the one i have given you in the 'UsingPermissionsEx.zip'.
Now open it, and inside you will see i have already prepared the basic bones of the system for you.You may change the names of these groups as you wish, simply highlight the group name, and type out a new name. This will avoid messing up the spacing, causing the plugin to fail to load.
Now you may begin to configure the permissions, REMEMBER, never use tabs, as YML files dislike them, and it will cause your system to break.


Adding Permissions:
Each group/user has a permissions list, all nodes you want available to a player/group must be defined in their list.
For example:
groups:
    
Default:        
default: true        
prefix:        
suffix:       
permissions:       
- modifyworld.chat


This allows any member in the group 'Default' to chat on the server.
This permission is needed for players to chat, as it is a part of ModifyWorld, which we will go into with more detail later.



You can also add negative permissions, that will disallow users access to that permission, for example. 
groups:    
Default:
        default: true        
prefix:        
suffix:        
permissions:        
- -modifyworld.chat


This will disallow players in this group to use the servers chat. This is useful for not allowing users to speak until they have been promoted to a higher rank, that has access to 'modifyworld.chat', very useful for battling those spammers!
Permissions can be given on a per-world basis, which is great for multi-world servers. So let's say for example you have a creative world, and a survival world, and you want a group to be able to spawn items in creative, but not survival (using the plugin 'Essentials' as an example', you would write this as:

groups:   
Default:
        default: true
        prefix:        
suffix:       
permissions:        
worlds:            
creative:                
permissions:               
essentials.item            
survival:
                permissions:


By giving the permission on a per-world basis, rather than defining it in the groups main permissions list, the group can now spawn items in the creative world, but because you haven't defined the permission in the survival worlds permissions, they do not have the permission to spawn items when in that world.When giving permissions on a per-world basis, the world name must be the same as the name of the world folder found in your server directory. All group/user/world names are CASE-SENSITIVE.


Finally, permissions can be given on a per-user basis also, which will override the group they are in, and give them their own personal permissions, plus the groups. You can define these by doing this:


users:    
PLAYERNAME:        
group:       
 - Default        
permissions:        
- essentials.item

This means that even if the group they are in has not got the 'essentials.item' permission, this user will have permission to use it.
In the 'UsingPermissionsEx.zip' folder i have provided, there is a file named 'Permissions-Set-Up.yml'.This file goes into detail about what each section of the permissions.yml is used for, and how to set up your permissions system without any error.


You can add permissions to a group in-game or via the console by using the command:


/pex group [group] add [permissions]


Replacing '[group]' with a group name, and '[permission]' with a permission node.

Applying players to groups.


There are two easy ways to assign players to groups, either by manually adding a group name to a user in the users section, like so:

users:   
 YOURNAMEHERE:        
group:        
- Owner

Or by using in-game commands (providing you have permissions to, but for simplicity, i have added the correct permissions to the highest ranking group in the permissions.yml file i have given you), via a chat command or through the console., like so:

/pex user [playername] group set [group]

Replacing '[playername]' with a players name, and '[group]' with a group name.

Using ModifyWorld.


ModifyWorld is a plugin which comes included with PermissionsEx, and provides a number of different permissions which control the  way your users behave on your server, for example whether they can speak, use Minecarts/Boats, or even use beds.All of these nodes can be given in the same way any other node can, be it global, per-world, or per-user.
The use of negative nodes are not needed, if you do not want a group/user to be able to access a permission, simply do not define it.
There is a file in the 'UsingPermissionsEx.zip' folder that lists all of the different permission nodes linked with Modifyworld, how to use them, and what they control.
PLEASE NOTE: You MUST give the relevant ModifyWorld permissions to your users, if you skip this step and do not give any of the nodes, your users will not be able to speak, or do anything.
Please remember to go into the config.txt for ModifyWorld, and set 'Enable' to true.

Using ChatManager.


Please remember to go into the config.txt for ChatManager, and set 'Enable' to true.
ChatManager is a server chat plugin desinged for use with PermissionsEx, it allows your users/groups to have prefixes/suffixes assigned to their names, for example: [Server][Owner] Playername'.
I do not recommend running this alongside any other chat formatting plugin, as they could intefere with each other. I advise removing other chat plugins, such as HeroChat, iChat, etc, and just using ChatManager, as it works perfectly with PermissionsEx, and other plugins such as Factions that add a prefix.


Configuiring ChatManager:


Go to your /plugins/ChatManager directory, and open the 'config.yml'. Replace the text in that file with this set up i have created in advance, to give a result that will look like the example above:


chat-range: 100.0
display-name-format: '%prefix%suffix%player'
global-message-format: <%prefix|%suffix%player> &e%message
enable: true
message-format: <%prefix%suffix%player> %
messageranged-mode: false


Hit save.


Giving a group a prefix/suffix:
Go back to you /plugins/PermissionsEx, and open the 'permissions.yml' file again.
You will notice under each group name i have placed two sections named prefix, and suffix.Adding these prefixes and suffixes is incredibly easy, and can look however you like.
In the file, i have given an example under the Default group that looks like this:


groups:    
Default:        
default: true        
prefix: '&6[&7Default&6] &f'        
suffix: '&f'        
permissions:        


The '&6, &7, and &f' denote colours/colors.
So in actual fact, this prefix would be displayed as:


[Default]

Since we have given a suffix of '&f', this means anything after the code will be displayed as white, meaning the PLAYERNAME and MESSAGE.
We can also use the suffix as an extra prefix, by typing something like this:

groups:   
Default:        
default: true        
prefix: '&1[&2Server&1]'        
suffix: '&6[&7Default&6] &f'        
permissions:


Which will be displayed as:

[Server][Default]

And because we added '&f' the text after the suffix will be white, like the PLAYERNAME and MESSAGE.

Everything Else.


This was just a quick, basic tutorial for those were confused by permissions, if i have confused you even more i apologise, and if i have missed something, or you run into errors, please comment on this blog, or send me a PM, and i will help you the best i can.
For a full list of commands/permissions, and more in-depth set-up guides relating to PermissionsEx, go to: http://forums.bukkit.org/threads/admn-dev-permissionsex-pex-v1-14-tomorrow-is-today-1240.18140/

Additional Details

Tags:Server, Bukkit, Plugins, Tutorial, BENNETTMAN, Permissionsex, Permissions
Credit:t3hk0d3, Bukkit Logo Pixelart by: Eplemosen

More Blogs by BENNETTMANView All

2012-07-25 10:07:55
by BENNETTMAN

Update #5 - Reformatted! : 12/20/2011 1:41:17 pm12/20/11

Formatting bug has been fixed, so now i have fixed up the ugly mess this blog had become.
I will be updating this tutorial for the latest version of PermissionsEx, with easier methods to achieve the things covered in this tutorial.

Also, we got over 10,000 views!

Update #4 : 12/09/2011 10:50:49 pm12/09/11

Forgot about the formatting bug, tutorial looks like crap.
Use the tutorial I have provided in the link until I can fix this one.

Update #3 - Upcoming Updates : 12/09/2011 10:47:03 pm12/09/11

Updated for latest dev builds of CraftBukkit and PermissionsEx.
I will be updating the tutorial files to an easier to read/understand version.
The template files will also be updated to use the easier formatting that I use myself.

Update #2 - Version 1.16 : 11/09/2011 12:33:16 pm11/09/11

Updated to include additional information regarding PermissionsEx version 1.16

Update #1 - Recommended by t3hk0d3! : 10/06/2011 7:56:57 am10/06/11

This tutorial has been noticed and recommended by the plugins author, check out the mention in the bukkit.org post!

Join us to post comments.

Comments : 168

1 - 50 of 168

NiteShadow7
Level 1
New Crafter
January 10, 2013, 4:34 pm

Sweet! I've just received my free minecraft giftcode!


>> Minecraftcodes.info <<

3skandar
Level 7
Apprentice Engineer
December 7, 2012, 2:57 am

You still active on commentin this post? I thoughyou wasnt

JAGGEZII
Level 1
New Miner
October 22, 2012, 12:59 am

This is so cool! :D

Join my server!
pvp-riding-MCMMO-factions-shops and more!
89.255.132.113:25582
www.projectzedd.eu

BENNETTMAN
Level 44
Master Narwhal
October 22, 2012, 2:31 am

Zakoschris
Level 52
Grandmaster Programmer
October 9, 2012, 5:17 pm

if you suck my dick ill give you a peice of bacon mr.narwal

BENNETTMAN
Level 44
Master Narwhal
October 16, 2012, 3:27 am

Why are people still commenting on this.
It hasn't been updated in 10 months.
Especially unnecessary waste of time comments like this, any real point, or are you trying to be funny on a old submission that isn't monitored? 

kraiku
Level 20
Expert Dragonborn
October 3, 2012, 9:58 pm

Wow very nice tutorial I can now start on all my ranks and perms

OObOO64
Level 1
New Miner
July 12, 2012, 11:40 am

MC Olympia spoutcraft guns factions prision style!
108.163.251.100:25579

BENNETTMAN
Level 44
Master Narwhal
July 25, 2012, 6:02 am

Don't advertise servers on another members submissions.
Does anybody on this site have any grasp on courtesy these days?
There are sections for that, my OLD DEAD submission isn't one of them.

avianmax
Level 3
Apprentice Architect
June 4, 2012, 9:54 am

could someone please help me out with my yml permission..ive done everything in this tutorial but nothing works. i will send you my whole plugins file if you decide to help Thanks!

soccerrocks1
Level 1
New Explorer
May 28, 2012, 12:31 am

It says I don't have permission for the group Owner, but I am the owner of the server and I am op... any help? Also I am using a mac.

Hzabooboo
Level 22
Expert Pokemon
May 22, 2012, 4:47 pm

http://www.planetminecraft.com/skin/post-apocalyptic-zombie/

BENNETTMAN
Level 44
Master Narwhal
June 3, 2012, 12:57 pm

Don't advertise your work on other peoples posts.

Hzabooboo
Level 22
Expert Pokemon
June 3, 2012, 1:36 pm

I'm so sorry I didn't know

TheNikkoCraft
Level 5
Apprentice Miner
April 5, 2012, 2:23 am

BENNET, how do I do so like Default can chat? I have this problem on my server that anyone can't chat? Please help, fast! I wan't everyone to chat!

Arrow2Knee
Level 1
New Explorer
March 14, 2012, 4:07 pm

Is There a way to make Inheritances IF so show me the Correct format or if you wan't edit the Post.

kuchiyo
Level 10
Journeyman Modder
March 2, 2012, 5:33 am

My permission's prefixes wont work can someone help me? This is admin rank: Admin:
        default: false
        permissions:
        - '*'
        - mcbans.*
        inheritance:
        - moderator
        info:
            prefix: '&4[Admin]&f'
            build: true
            suffix: '&f'

with this ingame: <kuchiyo>

Alt231
Level 41
Master Bunny
March 12, 2012, 2:51 pm

its not formatted right I think.
groups:
  Admin:
    default: true
    info:
      prefix: '&a[Admin]&f'
      suffix: '&f'
      build: true
    inheritance:
    - Mod                                   The inheritance rank can be of any rank before it.
    permissions:
    - permissions.node

You need to configure it like that. if it is the first rank on the list it has to have
groups:
  Admin:
    default: true
    info:
      prefix: '&a[Admin]&f'
      suffix: '&f'
      build: true
    inheritance
    - Mod
    permissions:
    - permissions.node


Keep in mind that the prefix and suffix codes can be any colors. A link to every color is:
http://www.minecraftwiki.net/wiki/Classic_server_protocol   at the bottom of the page.

Lemonhands
Level 1
New Miner
February 28, 2012, 10:09 am

Hi, I am having a bit of trouble using permissions on my server, when I start it it tells me that permissions.yml is empty, ignoring it, also I can't use permissions even though I am owner or add colours to prefixes, could someone please help, this is my .yml file on Pastie: 
http://pastie.org/3473397

PotatoCraft123
Level 1
New Miner
March 2, 2012, 3:42 pm

ERROR:

while scanning an anchor
in "<unicode string>", line 5, column 18:
suffix: '&f'
^
expected alphabetic or numeric character, but found "'"
in "<unicode string>", line 5, column 20:
suffix: '&f'

rudolf323
Level 17
Journeyman Explorer
February 27, 2012, 11:24 am

How to make that, so new players automatically join in to default group ?

default : true is not working.

Alt231
Level 41
Master Bunny
March 12, 2012, 2:52 pm

that should work. Make sure they have not joined before, then make sure no other rank has default set to true.

littlehughes
Level 3
Apprentice Engineer
February 24, 2012, 12:29 pm

Now I am getting this message:



174 recipes
27 achievements
17:27:54 [INFO] Starting minecraft server version 1.1
17:27:54 [INFO] Loading properties
17:27:54 [INFO] Starting Minecraft server on *:25565
17:27:54 [INFO] This server is running CraftBukkit version git-Bukkit-1.1-R3-b1846jnks (MC: 1.1) (Implementing API version 1.1-R3)
17:27:56 [SEVERE] mapping values are not allowed here
 in "<reader>", line 3, column 16:
            default: true
                   ^

Ga55246
Level 12
Journeyman Taco
February 19, 2012, 5:19 pm

Would you please just tell me how to fix this, when I try to change somebody's rank I get this, "Player not in this ladder." and when I can set their group they still appear as [Guest] instead of whatever rank i need them to be. So you can see if any of my plugins aren't compatible with PermissionsEx, Here are my .jars that are in my plugins folder.

AntiCreeper, BKCommonLib,ChatManager, Essentials,EssentialsChat(GeoIP, GroupBridge, Protect, Spawn, XMPP, iConomy, Lockette, Log, MobDisguise, Modifyworld, nc (no clue what that is), NoCheat, NoLagg, Permissions, PermissionsEx, Playerfreeze, ServerLogSaver,  SideKick, SimpleJail, SimpleRestart, Worldedit, and WorldGuard

Please do take your time, I understand you may be busy thank you.

Medic0987
Level 19
Journeyman Archer
February 18, 2012, 9:10 pm

Please help when I try to promote myself it tells me:
"Dont have enough Permission for group Owner"


Like I cant promote myself up :/.

Ga55246
Level 12
Journeyman Taco
February 19, 2012, 3:34 pm

In the .bat (THE .bat FILE) file say manuadd [your name] [rank]

littlehughes
Level 3
Apprentice Engineer
February 11, 2012, 12:35 pm

I am getting this Message:


17:32:19 [INFO] [PermissionsEx] sql backend registered! 
17:32:19 [INFO] [PermissionsEx] file backend registered! 
17:32:19 [INFO] [PermissionsEx] PermissionEx plugin initialized. 
17:32:19 [INFO] [PermissionsEx] p2compat backend registered!
 17:32:19 [INFO] [PermissionsCompat] Compatibility Layer Initalized!
 17:32:19 [INFO] [PermissionsEx] Initializing file backend 
17:32:19 [SEVERE] while scanning for the next token; found character 't' that cannot start any token initializing PermissionsEx v1.18 (Is it up to date?)
while scanning for the next token
found character 't' that cannot start any token
in "<reader>", line 7, column 1:
default: false
^




What do i do?

Tromania
Level 21
Expert Explorer
February 12, 2012, 6:38 am

go into your permissions.yml in permmisonsEX
Scroll down to line 7, you probably have a space between the next line or something.
Delete that space and you should be good.

Tromania
Level 21
Expert Explorer
February 12, 2012, 6:38 am

go into your permissions.yml in permmisonsEX
Scroll down to line 7, you probably have a space between the next line or something.
Delete that space and you should be good.

C4chaoskiller
Level 22
Expert Miner
February 11, 2012, 9:53 am

how do i disable the Modifychat thing? like i want new players to chat .

carrasp
Level 16
Journeyman Taco
February 8, 2012, 3:22 pm

CAN SOMEONE PLEASE MAKE ME A PRE MADE REMISSIONS.YML WITH ADMIN RANK, 
SUB-ADMIN RANK, MODERATOR RANK AND PLEASE MAKE ADMIN GET ALL COMMANDS EXCEPT
FOR /STOP IF YOU DO YOU YOU GET ADMIN ON MY SERVER!!!!!!!PLEASE HELP I AM A NOOB!!!!!!!!

BENNETTMAN
Level 44
Master Narwhal
February 9, 2012, 8:11 am

Use the tutorial and do it yourself.

carrasp
Level 16
Journeyman Taco
February 15, 2012, 1:58 am

I TRIED IT WONT LOAD

BENNETTMAN
Level 44
Master Narwhal
February 15, 2012, 4:19 am

I don't help people who can't turn off capslock.
Be respectful.

Randomer9
Level 1
New Miner
February 8, 2012, 10:45 am

I would appreciate it if you took a look at this and gave some advice about what I have done wrong

http://pastebin.com/tSpU8njB

Thanks

Randomer9
Level 1
New Miner
February 9, 2012, 11:09 am

Please could you take a look at it, I really need to sort my server, its stressing me out.

I followed your post to the best of my abilities but my skills in notepad++ are non-existant.

BeefMamaFresh
Level 1
New Explorer
February 5, 2012, 2:05 pm

Hello,
I am having two problems with My PermissionsEx. The problem is when I start my test server I get this,

18:49:51 [INFO] [Modifyworld] Loading Modifyworld v1.18.
18:49:51 [SEVERE] [Modifyworld] PermissionsEx not found, disabling
18:49:51 [INFO] [Modifyworld] Unloading Modifyworld v1.18.
18:49:51 [INFO] [Modifyworld] Modifyworld disabled!
18:49:51 [INFO] [Permissions] Loading Permissions v2.7.7.
18:49:51 [INFO] [PermissionsCompat] Compatibility layer enabled.
18:49:51 [INFO] [ChatManager] Loading ChatManager v1.18.
18:49:51 [SEVERE] [ChatManager] PermissionsEx not found, disabling
18:49:51 [INFO] [ChatManager] Unloading ChatManager v1.18.
18:49:51 [INFO] [ChatManager] ChatManager disabled!
18:49:51 [INFO] Server permissions file permissions.yml is empty, ignoring it
18:49:51 [INFO] Done (0.946s)! For help, type "help" or "?"


So my prefix and suffix specifications are not working because ChatManager is not loading I cant find out how to fix this problem. My second problem I am having is with promotion and demotion it is saying something about ladders? if anyone can help me that would be GREAT here is my permissions.yml 
http://www.mediafire.com/?itq9lh3bzf974m4
you can also email me you will find my email in the ReadMeFirst.txt

BENNETTMAN
Level 44
Master Narwhal
February 7, 2012, 4:48 am

Just copy and paste your permissions.yml to pastebin.com, I'm not downloading anything.

BeefMamaFresh
Level 1
New Explorer
February 7, 2012, 2:59 pm

Here you go. I put it in pastebin.com for you :)
Here is the link: http://pastebin.com/djpppt35

BeefMamaFresh
Level 1
New Explorer
February 7, 2012, 2:55 pm

ok

BENNETTMAN
Level 44
Master Narwhal
February 8, 2012, 1:08 am

BeefMamaFresh
Level 1
New Explorer
February 8, 2012, 4:47 pm

The prefix and suffix's are working but I am having the promotion error (user are not in this ladder) can you help me with that too please Thanks for helping me with iChat I cant thank you enough!!!!!!!!!

BeefMamaFresh
Level 1
New Explorer
February 10, 2012, 10:23 am

Can you please help with the error?

n3wholy
Level 2
Apprentice Crafter
January 31, 2012, 11:26 pm

how i can remove the brackets   <          > in the chat



chat-range: 200.0
display-name-format: '%prefix%player%suffix'
global-message-format: <%prefix%player&f%suffix> %message
enable: true
message-format: <%prefix%player&f%suffix> %message
ranged-mode: false

BENNETTMAN
Level 44
Master Narwhal
February 2, 2012, 4:21 am

By deleting the < > symbols.

lastcresendo
Level 1
New Miner
January 28, 2012, 5:29 pm

My color names and such aren't working(ranks the player isn't actually being a rank to limit his/her commands)...I also get quite a few errors but there are to many to put. Such as the command say doesn't work in console anymore.

http://pastie.org/3273591

carls1976
Level 1
New Miner
January 16, 2012, 2:12 am

i download your files replace it for the one in the pex folder and when i boot my server its comes up with a load of errors

12:10 PM [SEVERE] Error occurred while enabling PermissionsEx v1.18 (Is it up to date?): null

12:10 PM [SEVERE] [ChatManager] PermissionsEx not found, disabling

12:10 PM [SEVERE] [Modifyworld] PermissionsEx not found, disabling

Mythbusters
Level 1
New Miner
January 23, 2012, 4:46 am

Same here!

Also, when someone exits the server the .cmd totally freaks out!

Please help

Mythbusters
Level 1
New Miner
January 23, 2012, 4:48 am

P.S. I'm using minecraft 1.1 bukkit un-recommended build

sanzyyyy
Level 1
New Miner
January 13, 2012, 1:46 pm

hey guys. i got i problem with my permissions it is only "owner" there have permissons.


pmccf
Level 1
New Miner
January 6, 2012, 2:10 am

Hi! I cant get permissions to work. When i change a friends rank to Trial is he supposed to not be able to destroy blocks. But it don't work. Can you help me?


BENNETTMAN
Level 44
Master Narwhal
January 8, 2012, 2:53 am

pmccf
Level 1
New Miner
January 11, 2012, 7:23 am

How do i get so when players starts in trial they cant destroy/place any blocks?

BENNETTMAN
Level 44
Master Narwhal
January 11, 2012, 10:27 pm

Give them this permission: - -modifyworld.blocks.destroy.*

pmccf
Level 1
New Miner
January 8, 2012, 5:20 am

Thank you :)

demolitionforces
Level 1
New Miner
January 4, 2012, 5:24 pm

Already Resolved 

PenguiN_x
Level 50
Grandmaster Pegasus
January 4, 2012, 3:01 am

Hey! I have a question: I have the groups etc. Im in the group Owner and my name is dark gray. But I want it to show dark gray when pressing 'tab' or "tab list". Any help?

BENNETTMAN
Level 44
Master Narwhal
January 4, 2012, 3:08 am

PermissionsEx and ChatManager do not link with the tab player list, as far as I am aware.

PenguiN_x
Level 50
Grandmaster Pegasus
January 4, 2012, 3:17 am

How then? in my Essentials there is change displayname: true and change-prefix-suffix: true but it just shows when /afk [Owner]PenguiN_x is now afk

BENNETTMAN
Level 44
Master Narwhal
January 4, 2012, 3:19 am

If you're using PermissionsEx and ChatManager, you should have change displayname in essentials set to false.

PenguiN_x
Level 50
Grandmaster Pegasus
January 4, 2012, 3:26 am

Did it, but still no colors in tab. Maybe have to change something from PermissionsEx or ChatManager configs?

BENNETTMAN
Level 44
Master Narwhal
January 4, 2012, 3:31 am

Read the first comment, they don't link.

There may be a plugin that reads PermissionsEx groups, and applies it to the tab list, but PermissionsEx can't do it, it is simply a permissions handler.

PenguiN_x
Level 50
Grandmaster Pegasus
January 4, 2012, 3:35 am

Well what plugin that could be? I've been on servers and types /plugins but I just can't get it. And admins doesn't listen

PenguiN_x
Level 50
Grandmaster Pegasus
January 4, 2012, 3:49 am

Someone said me that you can make the color show in tab with Essentials or iChat. Well, essentials doesn't work, and I don't know what to write to iChat config

BENNETTMAN
Level 44
Master Narwhal
January 4, 2012, 3:55 am

You can't use iChat with PermissionsEx anyway, that is what ChatManager is for.

I don't know what plugin it will be, if it even exists.

Crabmechanic
Level 1
New Miner
January 2, 2012, 9:40 pm

http://pastebin.com/K1AkQsa0

If you open it with Notepad ++ It shows allot of red areas, and then, if you open it with, http://yaml-online-parser.appspot.com/ it will say all the red spots on Notepad++ Are wrong :/.. If you could fix em for me, or add me on Skype, and help me out that'd be great! My username is TheCrabMechanic

BENNETTMAN
Level 44
Master Narwhal
January 3, 2012, 12:46 am

http://pastie.org/3117626

That should work.

Crabmechanic
Level 1
New Miner
January 3, 2012, 6:14 pm

http://pastie.org/3122578

Thats my most recent one, and for SOME REASON, I got the suffix to show up, BUT, I cant promote my self to Owner, My IGN is TehGrizzlyBear And when ever I type /pex promote TehGrizzlyBear TG, TG is the ladder, it says I am not a high enough rank for that..so..AM CONFUSED, Anyway, please help me!!

Crabmechanic
Level 1
New Miner
January 3, 2012, 10:26 am

Well, from the beginning, the [Suffix] wasn't working, and I never had the work suffix, so I changed prefix, with suffix, and put the [name] i want, but it still doesnt show up! Could you help help me?

http://pastie.org/3120569

EDIT: Im also not using Chat Manager..Am I Supooused to?

Crabmechanic
Level 1
New Miner
January 3, 2012, 10:26 am

Also, I just realised I skipped some changing, of prefix, and suffix, could ya fix that for me also, ty ty

BENNETTMAN
Level 44
Master Narwhal
January 4, 2012, 2:51 am

If you realised, just fix it yourself, I'm here for help, not to do everything for you.

Of course you are meant to use Chat Manager, and don't use the promote commands, just use the commands for setting the group.

1 - 50 of 168