Hey,
I've recently set up a Tekkit server and would like to add the Enjin plugin which requires a permissions plugin and vault in order to work. As recommended by Enjin for tekkit classic, I have used permissionsEx.
I have installed permissionsEx plugin version 1.19.3 as I have been informed that it is important to ensure that the version is compatible with craftbukkit 1.2.5.
Originally I attempted to setup the permissions file using McMyAdmin but after this did not work I configured the permission.yml manually.
At the moment it appears that the permissions are half working but not in the way I intended... New players are able to log into the server but unable to place or destroy blocks which is intended; however, they are also unable to talk which was not supposed to happen.
Even when the guest is promoted to a member or higher rank they are still unable to break blocks, build or talk unless they have been made an OP on the server.
I have put myself into the admin group and this is confirmed when typing /pex users; however, when I type in chat there is still not prefix or colour change which there should be according to the permissions.
Additionally, the /pex groups command has confused me further as it displays the following:
registered groups:
Guest #0 (rank: 1000@default) []
Member #0 (rank: 900@default) [Guest]
Moderators #0 (rank: 100@default)
Administrators #0 (rank:1@default) [Moderators]
As I understand it, the second digit here displays the number of users in each group? and it is stating that there are no users in any group. However, when I type the /pex users command it displays the following:
Currently registered users:
******
Deveshi [Administrators]
I have ran my permissions.yml through a YML parser and had back no errors and cannot understand what is wrong.
My permissions.yml is as follows:
users:
capitancunt:
group:
- Member
Deveshi:
group:
- Administrators
groups:
Guest:
default: true
permissions:
- -modifyworld.blocks.place
- -modifyworld.blocks.destroy
- chatmanager.chat.*
inheritance:
- ''
worlds: '*'
prefix: '&f[Guest]'
suffix: '&f'
options:
rank: '1000'
Member:
default: false
permissions:
- modifyworld.*
- chatmanager.chat.*
inheritance:
- Guest
worlds: '*'
prefix: '&6'
suffix: '&f'
options:
rank: '900'
Moderators:
default: false
permissions:
- modifyworld.*
- chatmanager.chat.*
inheritance:
- Member
worlds: '*'
prefix: '&1[Mod]'
suffix: '&f'
options:
rank: '100'
Administrators:
default: false
permissions:
- '*'
- worldguard.*
- worldedit.*
- -essentials.joinfullserver
- bukkit.command.*
- modifyworld.*
- chatmanager.chat.*
inheritance:
- Moderators
worlds: '*'
prefix: '&4[Admin]'
suffix: '&f'
options:
rank: '1'
Please help.