====== Groups.ini ======
This is the configuration file that governs the permissions assigned to user groups. Each group can have a set of permissions, can inherit permissions from another group, and can have a color assigned, so that the group members' names are shown in that color in the in-game chat.

The general format is that the group name is used as the section name, with variables for each parameter:
<code ini>
[Group1]
Permissions=core.build,core.help,core.teleport
Color=1

[Group2]
Permissions=core.time
Inherits=Group1
Color=3
</code>

These variables can be used:
^ Variable ^ Meaning ^
| Permissions | A comma-separated list of permissions. May contain wildcards in the permissions' names. |
| Color | The color code used for displaying the name of groups' member in the chat. Refer to the MC Wiki for text color numbers. |
| Inherits | A group from which this group inherits all permissions. |

There is a special group, Default, that is used for all users that are not listed in the users.ini file.