This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Zambonie's profile picture

Looking For Help - Making Perms For My Server.

Started by Zambonie, 27 August 2013 - 05:08 PM
Zambonie #1
Posted 27 August 2013 - 07:08 PM
Some of you might know, I am starting to host my own server and its closed to get ready for the public. (Getting Mods in/ Getting Perms) . I am having problems w/ the perms and I would like for someone to do it for me. Ive got some YML code already:

Spoiler

groups:
  minor:
	deafult: true
	prefix: ' &4[Coder]&f '
	permissions:
	- essentials.afk
	- essentials.afk.auto
	- essentials.afk.kickexempt
	- essentials.getpos
	- essentials.help.[pluginname]
	- essentials.ignore
	- essentials.list
	- essentials.me
	- essentials.motd
	- essentials.nick
	- essentials.nick.color
	- essentials.suicide
	- essentials.whois
	- essentials.clearinventory
	- essentials.ping
	- essentials.spawn
	- essentials.back
	- essentials.delhome
	- essentials.home
	- essentials.worlds.<worldname>
	- essentials.sethome
	- essentials.tpa
	- essentials.tpaall
	- essentials.tpaccept
	- essentials.tpdeny
	- essentials.tpahere
	- essentials.warp.list
	- essentials.warp
	- essentials.chat.color
	- essentials.chat.url
	plotme.use
	plotme.limit.1

Please take it from there, but notify me first.

Thank You.

(Ask me for more info)
Mackan90096 #2
Posted 28 August 2013 - 02:32 AM
What permission plugin are you using? What plugins?
nolongerexistant #3
Posted 28 August 2013 - 03:05 AM
You made a few mistakes in there:

Corrected version:
Spoiler

groups:
  minor:
	deafult: true
	prefix: '&amp;4[Coder] &amp;f '
	permissions:
	- essentials.afk
	- essentials.afk.auto
	- essentials.afk.kickexempt
	- essentials.getpos
	- essentials.help.*
	- essentials.ignore
	- essentials.list
	- essentials.me
	- essentials.motd
	- essentials.nick
	- essentials.nick.color
	- essentials.suicide
	- essentials.whois
	- essentials.clearinventory
	- essentials.ping
	- essentials.spawn
	- essentials.back
	- essentials.delhome
	- essentials.home
	- essentials.worlds.*
	- essentials.sethome
	- essentials.tpa
	- essentials.tpaall
	- essentials.tpaccept
	- essentials.tpdeny
	- essentials.tpahere
	- essentials.warp.list
	- essentials.warp
	- essentials.chat.color
	- essentials.chat.url
	- plotme.use
	- plotme.limit.1

Side note: Use spaces instead of tabs, YAML doesn't like tabs.

You need 4 spaces a '- ' and then the permission. Also permission nodes with something like:

essentials.help.[pluginname]
essentials.worlds.<worldname>

require you to specift the plugin or world you want to enable. In your case I just set it to

essentials.help.*
essentials.worlds.*

The '*' basicly stands for 'all'.
Zambonie #4
Posted 28 August 2013 - 06:57 PM
What permission plugin are you using? What plugins?

Either PermisionsEx or Group Manager

Also thanks a bit snaky ;)/>
Mackan90096 #5
Posted 29 August 2013 - 09:25 AM
I can only use groupmanager as I use that for my server.
Zambonie #6
Posted 29 August 2013 - 06:28 PM
OK,