Bukkit Plugins: Permissions
Bukkit Plugins: Permissions
Content Deleted
Last edited by Samuel98 on Sun Mar 22, 2015 9:45 pm, edited 1 time in total.
Samuel Carr
Server Developer
W: http://epiccrafts.co.uk
E: [url]mailto://samuel.carr@epiccrafts.co.uk[/url]
Re: Bukkit Plugins: Permissions
What you have is
You can just check the permission, if you have it to default: op in your plugin.yml file bukkit will set it for all OPs
if (player_is_not_op OR player_does_not_have_permission){ }Over all this will always be true since the player will not have the permission if they are an OP and will not be an OP if they have the permission.
You can just check the permission, if you have it to default: op in your plugin.yml file bukkit will set it for all OPs
Re: Bukkit Plugins: Permissions
Content Deleted
Last edited by Samuel98 on Sun Mar 22, 2015 9:46 pm, edited 1 time in total.
Samuel Carr
Server Developer
W: http://epiccrafts.co.uk
E: [url]mailto://samuel.carr@epiccrafts.co.uk[/url]
Re: Bukkit Plugins: Permissions
You probably de-oped your self or something ? Or maybe there was a change to do with the way isOp() is checked.