Inactive [ADMN/INFO] GroupManager v1.0 alpha-3 - A Permissions replacement [440-531]

Discussion in 'Inactive/Unsupported Plugins' started by AnjoCaido, Feb 17, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    AnjoCaido

    GroupManager - The Permissions 2.x plugin sucessor.
    Version: v1.0 alpha-5

    Yes, it has multiworld and multigroup users support now. When 1.0 final release, next step is database (SQLite/MySQL).

    ---

    If you use Essentials:
    - Don't use both EssentialsGroupManager.jar and GroupManager.jar! Just choose one, because they are the same!
    - Don't use both EssentialsGroupBridge.jar and FakePermissions.jar! Just choose one, because they are the same!


    ---

    As the growth of this plugin is getting faster and faster, I needed to put multiword support the soon as I could.
    Now it's here. And GroupManager is keeping all of it's good stuff! Did I say it is going to bring a lot more of new stuff too?

    Purpose of the plugin:
    The purpose has changed. Permissions got better. But it still not enough. Why I did, and keep doing this?
    I started it thinking that it would make me happy. Now it's because it will make YOU happy.

    Advantages against Permissions:
    • User multigroup support.
    • Full command list to change anything during game or thru the console.
    • Good API to change things. You to change a player group you can do getPlayer(name).setGroup(getGroup(name))
    • Exception nodes.
    • It separates groups files from users files.

    New Features:
    • User multigroup support(yay!)
    • Multiworld support(meh).
    • It has world permission mirroring(you can make a world nether having the same permissions of world2 instead of default world1).
    • It saves only the files that will have contents changed.
    • It separates groups files from users files.
    • It cleans old backup files older than 24h.

    Previous Features(included):
    • It has the same file format as Permissions, no need to get used with anything new.
    • It comes with a fake Permissions plugin, that attaches GroupManager to all your permissions dependent plugins. No need to make any changes, nor update other plugins. Just adjust your permissions files and GO!
    • Commands to change users permissions are REALLY on-the-fly(no touching files).
    • It saves the permissions data periodically.
    • It backups every file before overwrites.
    • Tons of commands for complete user/group/permission management during game/console.
    • It has a fantastic temporary permissions system, that let's you to make changes in users, with the possibility to go back at any time(and it never is saved on files).
    • Negative nodes(aka '-'): You can take off specific permissions from users that have a full set.
    • Exception node(aka '+'): Used when a user/group has a set of negative nodes, and you want to allow a specific one.

    User's subgroups: a brief explanation
    You can see on the file structure(down here on same post), that users have an optional node called subgroups. That node is a list, just like "permissions" node. There you can list a user subgroup, it can be as many as you want.
    What a user inherits from subgroups? Only permissions. It means nothing on a subgroup's info node(prefix, suffix, build and other variables) will be considered.
    The user will still be considered as a member of that group, but will only inherits it's permissions, like some commands, kits, etc.

    This reduces the needs of a nest of groups inheriting each other.
    You can have one user in Peasant group, which has only some basics, and them let him join in Miner as a subgroup, where he can get Miner kits, or other related to miner group.
    Later, when your town needs a railer, you can just add the group Railer to him as subgroup, and he will have both things at same time. When the job is done, you just remove the subgroup.
    This gets even more interesting when you have groups related to towns, factions, teams… etc.

    World mirroring: a brief explanation
    Let's say you have a config file like this:
    Code:
    settings:
      data:
        save:
          minutes: 10
      logging:
        level: INFO
      permission:
        world:
          mirror:
            world1:
              - world2
              - world3
            world4:
              - world5
    It means that all your permissions of world2, and world3 will be the same of world1. And it means all permissions of world5 will be the same of world4.
    It won't copy any file. In fact, it won't matter if there is files for world2… when the permissions get load, every request for world2 will be redirected for world3. Simple as that.

    If no mirroring is specified, any world not loaded will automatically mirror the default world of the server.

    File structure: a brief explanation
    The files read for GroupManager 1.0+ for data management are two files per world. The users file are users.yml. The groups file are groups.yml.
    The thing is that those files are located in:
    plugins/GroupManager/worlds/WORLDNAME

    So the file structure for the world called anjoCaidoWorld and netherWorld will be:
    plugins/GroupManager/worlds/anjoCaidoWorld/groups.yml
    plugins/GroupManager/worlds/anjoCaidoWorld/users.yml
    plugins/GroupManager/worlds/netherWorld/groups.yml
    plugins/GroupManager/worlds/netherWorld/users.yml

    The files might look like this:
    groups.yml
    Code:
    groups:
        Admins:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            - SemiAdmin
            permissions:
            - '*'
        Default:
            default: true
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance: []
            permissions:
            - essentials.spawn
            - essentials.motd
            - essentials.help
            - essentials.home
            - essentials.sethome
        Moderator:
            default: false
            info:
                build: false
                prefix: '&c'
                suffix: 'Mod'
            inheritance:
            - Default
            permissions:
            - essentials.tp
            - essentials.tphere
            - essentials.item
            - essentials.give
        SemiAdmin:
            default: false
            info:
                build: false
                prefix: '&c'
                suffix: 'SemiAdmin'
            inheritance:
            - Moderator
            permissions:
            - +groupmanager.mandemote
            - +groupmanager.manpromote
            - -groupmanager.*
            - '*'
        Peasant:
            default: true
            info:
                build: false
                prefix: '&e'
                suffix: 'Peasant'
            inheritance:
            - Default
            permissions: []
        Miner:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            permissions:
            - essentials.kit
            - essentials.kit.miner
            - flashlight.regular
        Healer:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            permissions:
            - essentials.kit
            - essentials.kit.healer
            - essentials.heal
        Farmer:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            permissions:
            - essentials.kit
            - essentials.kit.farmer
            - essentials.spawnmob
        Railer:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            permissions:
            - essentials.kit
            - essentials.kit.railer
    users.yml
    Code:
    users:
        anjocaido:
            group: Admins
            info:
                prefix: '&c'
                suffix: King
            permissions: []
        gmcouto:
            group: SemiAdmin
            permissions: []
        zenexer:
            group: Moderator
            permissions:
            - essentials.god
        aMiner:
            group: Peasant
            info:
                prefix: '&d'
                suffix: Miner
            permissions: []
            subgroups:
              - Miner
        aHealer:
            group: Peasant
            info:
                prefix: '&d'
                suffix: Healer
            permissions: []
            subgroups:
              - Healer
        aFarmer:
            group: Peasant
            info:
                prefix: '&d'
                suffix: Farmer
            permissions: []
            subgroups:
              - Farmer
        tempRailer:
            group: Peasant
            info:
                prefix: '&d'
                suffix: Miner
            permissions: []
            subgroups:
              - Miner
              - Railer
    You can see that the node structure are exactly the same used for GroupManager 0.99d(-) and Permissions, it means you can use the same files here.
    Note: Every node that doesn't make part of the respective file is ignored. So if you are migrating from older GroupManager or Permissions you can just duplicate your files as groups.yml and users.yml. When comes the time where is needed to save the file, all unused data for each file will be discarded. So you don't need to split files, just duplicate them with correct names, it will work.

    Negative and Exception nodes: a brief explanation
    Let's say you have a group SemiAdmin like this.
    Code:
    groups:
      SemiAdmin:
        default: false
        permissions: [+groupmanager.manpromote, -groupmanager.*,
          '*']
        inheritance: [Moderator]
        info: {prefix: '', build: false, suffix: ''}
    You should read this way:
    '*' -> means this group will have access to all commands.
    '-groupmanager.*' -> Where all his commands of groupmanager where removed.
    '+groupmanager.manpromote' -> Except manpromote.

    It means he can do everything that is not of GroupManager, AND manpromote.

    It's like listing essentials.*, worldedit.*, worldprotect.*, everyotherthing.* and groupmanager.manpromote.

    It gives a very big flexibility on permissions.

    Note:
    For every level of inheritance,
    Every permission starting with '+' is tested first. Then comes permissions starting with '-'. Then comes normal permissions(including '*').

    Commands:
    • Now on multiword support, every command will act only on the selected world.
    • If none/invalid world is selected, it will run on the default world.
    • If the world selected is a mirrored world, it will work on the mirror world.
    (on next version, when a command involves a player, there will be a toggle that will automatically act on the victim(player) world is in)
    Code:
    commands:
      manuadd:
        description: Move a player to desired group.(Adds to the file if not exists)
        usage: /<command> <player> <group>
        permission: groupmanager.manuadd
      manudel:
        description: Remove any user specific configuration. Make him default group.
        usage: /<command> <player>
        permission: groupmanager.manudel
      manuaddsub:
        description: Add a group to a player's subgroup list.
        usage: /<command> <player> <group>
        permission: groupmanager.manuaddsub
      manudelsub:
        description: Remove a group to a player's subgroup list.
        usage: /<command> <player> <group>
        permission: groupmanager.manudelsub
      mangadd:
        description: Add group to the system.
        usage: /<command> <group>
        permission: groupmanager.mangadd
      mangdel:
        description: Removes group from the system(all it's users become default)
        usage: /<command> <group>
        permission: groupmanager.mangdel
      manuaddp:
        description: Add permission diretly to the player.
        usage: /<command> <player> <permission>
        permission: groupmanager.manuaddp
      manudelp:
        description: Removes permission diretly from the player.
        usage: /<command> <player> <permission>
        permission: groupmanager.manudelp
      manulistp:
        description: List all permissions from a player.
        usage: /<command> <player>
        permission: groupmanager.manulistp
      manucheckp:
        description: Verify if user has a permission, and where it comes from.
        usage: /<command> <player> <permission>
        permission: groupmanager.manucheckp
      mangaddp:
        description: Add permission to a group.
        usage: /<command> <group> <permission>
        permission: groupmanager.mangaddp
      mangdelp:
        description: Removes permission from a group.
        usage: /<command> <group> <permission>
        permission: groupmanager.mangdelp
      manglistp:
        description: Lists all permissions from a group.
        usage: /<command> <group>
        permission: groupmanager.manglistp
      mangcheckp:
        description: Check if group has a permission, and where it comes from.
        usage: /<command> <group> <permission>
        permission: groupmanager.mangcheckp
      mangaddi:
        description: Add a group to another group inheritance list.
        usage: /<command> <group1> <group2>
        permission: groupmanager.mangaddi
      mangdeli:
        description: Remove a group from another group inheritance list.
        usage: /<command> <group1> <group2>
        permission: groupmanager.mangdeli
      manuaddv:
        description: Add, or replaces, a variable to a user (like prefix or suffix).
        usage: /<command> <user> <variable> <value>
        permission: groupmanager.manuaddv
      manudelv:
        description: Remove a variable from a user.
        usage: /<command> <user> <variable>
        permission: groupmanager.manudelv
      manulistv:
        description: List variables a user has (like prefix or suffix).
        usage: /<command> <user>
        permission: groupmanager.manulistv
      manucheckv:
        description: Verify a value of a variable of user, and where it comes from.
        usage: /<command> <user> <variable>
        permission: groupmanager.manucheckv
      mangaddv:
        description: Add, or replaces, a variable to a group (like prefix or suffix).
        usage: /<command> <group> <variable> <value>
        permission: groupmanager.mangaddv
      mangdelv:
        description: Remove a variable from a group.
        usage: /<command> <group> <variable>
        permission: groupmanager.mangdelv
      manglistv:
        description: List variables a group has (like prefix or suffix).
        usage: /<command> <group>
        permission: groupmanager.manglistv
      mangcheckv:
        description: Verify a value of a variable of group, and where it comes from.
        usage: /<command> <group> <variable>
        permission: groupmanager.mangckeckv
      manwhois:
        description: Tell the group that user belongs.
        usage: /<command> <player>
        permission: groupmanager.manwhois
      tempadd:
        description: Creates a temporary permission copy for that user.
        usage: /<command> <player>
        permission: groupmanager.tempadd
      tempdel:
        description: Remove the temporary permission copy for player.
        usage: /<command> <player>
        permission: groupmanager.tempdel
      templist:
        description: List players in overload-permissions mode made by /tempadd.
        usage: /<command>
        permission: groupmanager.templist
      tempdelall:
        description: Remove all overrides made by command /tempadd.
        usage: /<command>
        permission: groupmanager.tempdelall
      mansave:
        description: Save all permissions on file.
        usage: /<command>
        permission: groupmanager.mansave
      manload:
        description: Reload current world and config.yml. Or load given world.
        usage: /<command> [world]
        permission: groupmanager.manload
      listgroups:
        description: List the groups available.
        usage: /<command>
        permission: groupmanager.listgroups
      manpromote:
        description: Promote a player in the same heritage line to a higher rank.
        usage: /<command> <player> <group>
        permission: groupmanager.manpromote
      mandemote:
        description: Demote a player in the same heritage line to a lower rank.
        usage: /<command> <player> <group>
        permission: groupmanager.mandemote
      mantogglevalidate:
        description: Toggle on/off the validating if player is online.
        usage: /<command>
        permission: groupmanager.mantogglevalidate
      mantogglesave:
        description: Toggle on/ff the autosave.
        usage: /<command>
        permission: groupmanager.mantogglesave
      manworld:
        description: Prints the selected world name
        usage: /<command>
        permission: groupmanager.manworld
      manselect:
        description: Select a world to work with next commands.
        usage: /<command> <world>
        permission: groupmanager.manselect
      manclear:
        description: Clear world selection. Next commands will work on your world.
        usage: /<command>
        permission: groupmanager.manclear
    All commands that changes permissions only allow you to change users below in a inheritance level(eg. Admins can't mod other Admins, but can modify Moderators).
    Except for Console, he can modify anyone.

    So, what happens with all of these plugins that already use Permissions?
    They will still work. I made a fake Permissions plugin, that will replace your old Permissions plugin. And the new fake one will attach directly on GroupManager system. So all plugins will think they are working with Permissions, but they will work with GroupManager.
    The most incredible thing is that all those plugins will receive the benefit of instant changes.

    I'm a server Administrator, what should I do to use it?
    If you already have Permissions, do this:
    1. Remove Permissions.jar from you plugins folder. (leave the Permissions folder there, if it is named diferently than this, the automatic import will not work)
    2. Paste GroupManager.jar with FakePermissions.jar on your plugins folder.
    3. Run.
    4. With all file structure done, you create your worlds folder and copy your files there.

    All your old plugins will still work like a charm.

    I'm a plugin developer, how should I use this plugin?
    You can read the java-doc, linked below. It's not complete yet, but it has the essential.
    Here is some code examples...

    Loading in your plugin:
    Code:
    import org.anjocaido.groupmanager.GroupManager;
    import org.anjocaido.groupmanager.dataholder.worlds.WorldsHolder;
    import org.anjocaido.groupmanager.dataholder.WorldDataHolder;
    public void onEnable() {
            Plugin p = this.getServer().getPluginManager().getPlugin("GroupManager");
            if (p != null) {
                if (!this.getServer().getPluginManager().isPluginEnabled(p)) {
                    this.getServer().getPluginManager().enablePlugin(p);
                }
                GroupManager gm = (GroupManager) p;
                WorldsHolder wd = gm.getWorldsHolder();
            } else {
                this.getPluginLoader().disablePlugin(this);
            }
        }
    WorldsHolder contains everything you need. You can easily do anything with it.

    Here is a example of a plugin that in a special circumstance, needed to put the player in a special group, with no permissions at all.
    Code:
    public void markAsNotLoggedIn(Player player) {
                OverloadedWorldHolder perm = gm.getWorldsHolder().getWorldData(player);
                Group lockDown = perm.getGroup("NotLoggedIn");
                if(lockDown == null){
                    lockDown = perm.createGroup("NotLoggedIn");
                }
                perm.overloadUser(player.getName());
                perm.getUser(player.getName()).setGroup(lockDown);
        }
    From now on the user is in this special group. And every change on him is temporary. Until the code below is executed.
    Code:
    public void restorePermissions(Player player){
                OverloadedWorldHolder perm = gm.getWorldsHolder().getWorldData(player);
                perm.removeOverload(player.getName());
        }
    And, finally, how to check a user permission:
    Code:
    public boolean canChangeGroup(Player player){
                return gm.getWorldsHolder().getWorldPermissions(player).has(player,"groupmanager.mangroup");
        }
    F.A.Q.
    Q: It is compatible with permissions... but where it get it's data from?
    - A: It gets from users.yml and groups.yml in the world folder, located properly inside GroupManager worlds folder.
    Q: Can I use commands from other plugins to change permissions?
    - A: No. I made the decision to store data in GroupManager folder because I don't think it is right my plugin mess around with other ones files. Unfortunately, other plugins of group modification tries to access other files than mine.

    Changelog:
    Version 1.0 alpha-5:
    • Fixed a bug in method String[] groups(groupName)
    • Added some functionality to Tasks class
    • Fixed some errors in JavaDoc
    • Changed templates to make use of Roles plugin
    Show Spoiler

    Version 1.0 alpha-4:
    • Fixed subgroups listing when using /manulistp
    Version 1.0 alpha-3:
    • Basic user multigroup support using subgroups concept.
    • Added tracking for minor bugs.
    Version 1.0 alpha-2:
    • Now /manload reloads config.yml(which means mirror configuration receives updates too).
    Version 1.0 alpha:
    • Fixed some issues with /manpromote and /mandemote for multiples inheritances
    • Added permission node for commands in plugin.yml. So the newer EssentialsHelp feature I created will filter commands that people don't have(dev #688).
    Version 1.0 pre-alpha-3:
    • Now /manucheckp and /mangcheckp tells you if the permission was negated by a negation node.
    • Now using Breadth-first search for inheritance harvest. It guarantees that closer groups in inheritance are checked first.
    • Fixed some bugs, where a negation node directly in a user could be ignored.
    • Now it reads old data.yml and auto-install it to default world if none is found.
    • Created a system where plugins can get detailed answers from a permission check.
    • Deprecated some inefficient methods(all of them redirects to the new efficient method), but they still works.
    Version 1.0 pre-alpha-2:
    • World selection is optional, except for console.
    • Not selecting a world makes it run on same world of the command sender.
    • Fixed "temporary permissions" system.
    • Fixed most of commands bugs(I fixed all errors I could see)
    • Fake Permissions says it's 2.5 now, so plugins like HeroChat works now(yay).
    • Fixed some unnecessary file saves.
    • Added /manclear to clear selection
    • /manselect now lists physical worlds if no parameters are given.
    • /manload can load a world not loaded before, if given a parameter.
    Version 1.0 pre-alpha:
    • Refactored a lot of things. Please check the java-docs.
    • Added multiworld support.
    • Split files in users.yml and data.yml
    • Saves only files that needs changes
    • Fixed some bugs
    • World mirroring
    • Basic commands for world selection, to keep old commands working.
    Version 0.99d:
    • Fixed more small bugs.
    • Saves in human readable format
    • Deletes backups older than 24 hours
    Version 0.99c:
    • Fixed small bugs. Like /mangaddi
    • Changed some classes package
    Version 0.99b:
    • Fixed Group Variables, that I broke last version.(restore your backups, yay)
    Version 0.99a:
    • User specific variables. Prefixes, Suffixes and more.
    • Negative permission node(prevails normal nodes). Like '-groupmanager.*'
    • Exception permission node(prevails negative nodes). Like '+groupmanager.manpromote'
    Version 0.9e:
    • It writes a template it self if doesn't find any data.yml file on the folder.
    Version 0.9d:
    • FakePermissions adapted to new CB builds.
    Version 0.9c:
    • Multiple inheritance fixed.
    • Added a command to toggle auto-saving, so you can edit the file while it is disabled.
    • Tested with server 1.3
    Version 0.9b:
    • Now variables work with spaced strings.(you can add prefix with spaces)
    • Fixed some errors while loading files in later 400+ builds.
    • FakePermissions got small update.
    Version 0.9:
    • Added variables manipulation command(things in info node, such as prefix, suffix, build, and custom ones)
    • Improved FakePermissions support for the Nijikokun's original one.
    • FakePermissions force loading of GroupManager before itself.
    Version 0.8:
    • Added tons of commands. Resulting in a complete control, inside the game.
    • Renamed some commands in the same format Wulfspider sugested.
    • FakePermissions.jar updated to take care oc Misc field, which some Permissions plugins need.
    Version 0.7:
    • Added commands /manpromote and /mandemote
    • Fixed a bug where a file with an empty permissions node in a group could fail the plugin to load.
    • now /addpermissions can only add permissions that the player have access.
    Version 0.6c:
    • Removed the debugging messages that occurs while other plugins check permissions.
    • Removed the debugging messages on FakePermissions
    Version 0.6b:
    • Fixed inheritance system I broke in 0.6. Sorry.
    Version 0.6:
    • Fixed some bugs
    • User/Group class modelled in tiny different way(check JavaDocs)
    • Commands work on Console
    Version 0.5:
    • First fully working release.


    Future plans (they are closer than you think):
    • Make commands for cloning files, and world mirroring.
    • Implements Nijiko's interface for permission changing.
    • Make it work, optionally, with SQLite/MySQL(thinking of Persistence plugin, anyone with ideas?).

    Latest Build Download:
    http://www.mdn.fm/files/276497_as2zr/GroupManager-1.0-alpha-5.zip


    ===========================================
    Other Downloads:
    Java Doc:
    http://www.mdn.fm/files/276266_vqd0d/JavaDoc-GroupManager-1.0-alpha-3.zip

    ===========================================
    Plugins I love to use with GroupManager:
    Roles, Essentials, AntiGrief, iChat, MultiVerse, WorldEdit and WorldProtect.


    ===========================================
    Source:
    https://github.com/gmcouto/GroupManager
    Fake Permissions Source:
    https://github.com/gmcouto/FakePermission
     
    TNC, Kohle, pat8u and 17 others like this.
  2. Offline

    Alienware777

  3. Offline

    Rocik

    CBukkit #493, all plugins newest.

    After write command /lwc
    Code:
    [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'lwc' in plugin LWC v1.57
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:33)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:80)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:183)
        at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:619)
        at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:582)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:576)
        at net.minecraft.server.Packet3Chat.a(SourceFile:24)
        at net.minecraft.server.NetworkManager.a(SourceFile:230)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:75)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:357)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:272)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    Caused by: java.lang.NoSuchMethodError: org.anjocaido.groupmanager.GroupManager.getPermissionHandler()Lcom/nijiko/permissions/PermissionHandler;
        at com.griefcraft.lwc.LWCPlugin.onCommand(LWCPlugin.java:151)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:31)
        ... 12 more
     
  4. Offline

    crowebird

    @AnjoCaido - thanks for the support and the great permission plugin upgrade. AntiGrief now works with 1.0 (compiled with alpha 2.0)!
     
  5. Offline

    TerraPlay

    Why ins't Antibuild working for this group?

    Code:
    Gast:
        default: true
        permissions:
        - 'commandbook.rules'
        - 'commandbook.motd'
        - 'commandbook.spawn'
        - 'commandbook.who'
        - 'commandbook.whereami'
        inheritance: []
        info:
          prefix: '&7'
          build: false
          suffix: ''
     
  6. Offline

    AnjoCaido

    Which AntiBuild are you using?
    --- merged: Mar 3, 2011 6:25 PM ---
    I'm sure going to put on conpatible list.
     
  7. Offline

    Steph

    I had trouble setting this up on my server last night, i had two issues from the two ways i tried to install it:
    1. I tried installing it and using it to import my permissions settings, but this broke all the Groupmanager commands, it was coming up with "an unexpected error has occured with your command"
    2. i also tried installing it fresh and adding permissions to users/groups but neither was having any effect. I was getting a user on the server to use the /item command (which i had given both him and his user group, but it was still saying he didnt have permission to use that command.

    I want to use this plugin, as managing permissions on the Permissions plugin is a pain!

    Anyone got any ideas where im going wrong?

    TIA
     
  8. Offline

    Tomato

    Doesn't this have AntiBuild built-in? I see the permission options for it in the info section on groups. Or is that just a placeholder?
     
  9. Offline

    AnjoCaido

    Not it doesn't have AntiBuild built-in. The permission is for other plugins to use. There are several alternatives for AntiBuild.
     
  10. Offline

    Deesr

    If I change something in the users.yml file, it is after a restart reseted.
    Why?
     
    baflgraf likes this.
  11. Offline

    Adondriel

    why is the groups.yml and users.yml Read-Only??? im running linux/unbuntu... help please...
     
  12. Offline

    Greedish

    Dear Brazilian Fallen Angel, is this compatible with Groups v0.15 by NathanWolf? I want to use his spells plugin with this but not sure if it would work. Thanks in advance!
     
  13. Offline

    Deltaforce229

    When using this plugin. This plugin and all my other plugins will not load.

    Edit: This is driving me insane I keep adjust permission settings and it just seems nothing will work.

    Edit: Running the server without MCMA I was able to at least see an error now.

    Code:
    2011-03-03 20:44:46 [SEVERE] org.anjocaido.groupmanager.GroupManager.getData()Lorg/anjocaido/groupmanager/dataholder/DataHolder; (Is it up to date?)
    java.lang.NoSuchMethodError: org.anjocaido.groupmanager.GroupManager.getData()Lorg/anjocaido/groupmanager/dataholder/DataHolder;
            at org.visualadmin.Groups.getGroups(Groups.java:42)
            at org.visualadmin.Groups.setupGroups(Groups.java:55)
            at org.visualadmin.MultipleHomes.onEnable(MultipleHomes.java:200)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:140)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:426)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:79)
            at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:60)
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:187)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:174)
            at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:120)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:227)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    2011-03-03 20:44:46 [INFO] Done (3808772134ns)! For help, type "help" or "?"
    
    Edit: So running GroupManager without MultipleHomes is fine but I can't run the two together. Not sure which plugin is causing the problem.
     
  14. Offline

    Tohclan

    Having the same problem as Deltaforce229.

    Here's my server log on start up.

    Permissions 2.5.1 by nathenwolf.
    Group Manager 1.0 pre-alpha-3
    Craftbukkit version 493
    Using most of the plugins from Essentials.

    Permissions .yml is named world.yml.
    World folder is named world.

    Code:
    [INFO] Starting Minecraft server on *:25565
    2011-03-03 17:39:42 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-493-g8b5496e-b493jnks (MC: 1.3)
    2011-03-03 17:39:42 [INFO] Preparing level "world"
    2011-03-03 17:39:42 [INFO] Preparing start region
    2011-03-03 17:39:43 [INFO] Preparing spawn area: 61%
    2011-03-03 17:39:45 [INFO] [BukkitUp]: BukkitUp V.2.0 by Triii.ws, Now initialized & checking for updates....
    2011-03-03 17:39:45 [INFO] [BukkitUp]: Server is up to date!
    2011-03-03 17:39:45 [INFO] CraftBookCommon 3.0-alpha1 enabled.
    2011-03-03 17:39:45 [INFO] CraftBookCircuits 3.0-alpha1 enabled.
    2011-03-03 17:39:45 [INFO] CraftBookMechanisms 3.0-alpha1 enabled.
    2011-03-03 17:39:45 [INFO] CraftBookVehicles 3.0-alpha1 enabled.
    2011-03-03 17:39:45 [INFO] [DeathTpPlus] 6 Kill Streaks loaded.
    2011-03-03 17:39:45 [INFO] [DeathTpPlus] 5 Death Streaks loaded.
    2011-03-03 17:39:45 [SEVERE] null
    java.lang.Exception: The following file couldn't pass on Parser.
    plugins\GroupManager\data.yml
        at org.anjocaido.groupmanager.dataholder.DataHolder.load(DataHolder.java:279)
        at org.anjocaido.groupmanager.GroupManager.prepareData(GroupManager.java:112)
        at org.anjocaido.groupmanager.GroupManager.onEnable(GroupManager.java:75)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
        at com.nijikokun.bukkit.Permissions.Permissions.onEnable(Permissions.java:60)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
        at com.nijikokun.bukkit.Permissions.Permissions.checkEnable(Permissions.java:94)
        at com.nijikokun.bukkit.Permissions.Permissions.getHandler(Permissions.java:84)
        at com.lonelydime.DeathTpPlus.DeathTpPlus.setupPermissions(DeathTpPlus.java:148)
        at com.lonelydime.DeathTpPlus.DeathTpPlus.onEnable(DeathTpPlus.java:136)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:83)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:61)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    Caused by: java.lang.NullPointerException
        at org.anjocaido.groupmanager.dataholder.DataHolder.load(DataHolder.java:276)
        ... 23 more
    2011-03-03 17:39:45 [SEVERE] Permissions file is in wrong format loading DeathTpPlus v1.75 (Is it up to date?)
    java.lang.IllegalArgumentException: Permissions file is in wrong format
        at org.anjocaido.groupmanager.GroupManager.prepareData(GroupManager.java:116)
        at org.anjocaido.groupmanager.GroupManager.onEnable(GroupManager.java:75)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
        at com.nijikokun.bukkit.Permissions.Permissions.onEnable(Permissions.java:60)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
        at com.nijikokun.bukkit.Permissions.Permissions.checkEnable(Permissions.java:94)
        at com.nijikokun.bukkit.Permissions.Permissions.getHandler(Permissions.java:84)
        at com.lonelydime.DeathTpPlus.DeathTpPlus.setupPermissions(DeathTpPlus.java:148)
        at com.lonelydime.DeathTpPlus.DeathTpPlus.onEnable(DeathTpPlus.java:136)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:83)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:61)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    2011-03-03 17:39:45 [INFO] DropBonus has been enabled.
    2011-03-03 17:39:46 [INFO] Preparing spawn area for nether, 97%
    2011-03-03 17:39:46 [INFO] §eLoaded Essentials build 246 maintained by Zenexer, ementalo, Aelux, and Brettflan
    2011-03-03 17:39:46 [INFO] Loaded EssentialsBan build 246 by Zenexer, ementalo, Eris, and EggRoll
    2011-03-03 17:39:46 [INFO] Loaded EssentialsEco build 246 by Zenexer, ementalo, Aelux, and Brettflan
    2011-03-03 17:39:46 [INFO] Fake Permissions version 2.0 is enabled!
    2011-03-03 17:39:46 [INFO] GroupManager - Scheduled Data Saving is set for every 10 minutes!
    2011-03-03 17:39:46 [INFO] GroupManager version 0.99d is enabled!
    2011-03-03 17:39:46 [INFO] Loaded EssentialsHelp build 246 by Zenexer, ementalo, Eris, and EggRoll
    2011-03-03 17:39:46 [INFO] Loaded EssentialsProtect build 246 maintained by Zenexer, ementalo, Aelux, and Brettflan
    2011-03-03 17:39:48 [INFO] EssentialsServerlist version 246 by Vimae Development enabled.
    2011-03-03 17:39:48 [INFO] Loaded EssentialsSpawn build 246 maintained by Zenexer, ementalo, Aelux, and Brettflan
    2011-03-03 17:39:48 [INFO] Loaded EssentialsTele build 246 by Zenexer, ementalo, Aelux, and Brettflan
    2011-03-03 17:39:48 [INFO] Fake Permissions version 2.5 is enabled!
    2011-03-03 17:39:48 [INFO] [HeroSneak] 1.0.3.30 enabled.
    2011-03-03 17:39:48 [INFO] [iChat] Using Permissions 2.0 for permissions
    2011-03-03 17:39:48 [INFO] iChat (v2.07) enabled
    2011-03-03 17:39:48 [INFO] MobRider enabled
    2011-03-03 17:39:48 [INFO] MobRider - Permissions Plugin Detected
    2011-03-03 17:39:48 [INFO] [MYHOME]: 0 homes loaded
    2011-03-03 17:39:48 [INFO] [MYHOME] Permissions enabled.
    2011-03-03 17:39:48 [WARNING] [MYHOME] 'Help' isn't detected. No /help support.
    2011-03-03 17:39:48 [INFO] MyHome 1.9.2 enabled
    2011-03-03 17:39:48 [INFO] [MYWARP]: 0 warps loaded
    2011-03-03 17:39:48 [INFO] [MYWARP] Permissions enabled.
    2011-03-03 17:39:48 [WARNING] [MYWARP] 'Help' isn't detected. No /help support.
    2011-03-03 17:39:48 [INFO] MyWarp 1.10.3 enabled
    2011-03-03 17:39:48 [INFO] Sponge version 1.3 is enabled!
    2011-03-03 17:39:48 [INFO] Vanish 1.5 loaded.
    2011-03-03 17:39:48 [INFO] WorldEdit 4.0-beta8 enabled.
    2011-03-03 17:39:48 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-03-03 17:39:48 [INFO] Done (0.611s)! For help, type "help" or "?"
    
     
  15. Offline

    mrgreaper

    getting the following error with precous stones apears to be related to this plugin

    cb 493 (the RB)
    ps 2.6.1
    gm v1.0 pre alpha 3

    Code:
    2011-03-04 00:56:34 [INFO] [PreciousStones] version [2.6.1] loaded
    2011-03-04 00:56:34 [SEVERE] org.anjocaido.groupmanager.GroupManager.getPermissionHandler()Lcom/nijiko/permissions/PermissionHandler; loading PreciousStones v2.6.1 (Is it up to date?)
    java.lang.NoSuchMethodError: org.anjocaido.groupmanager.GroupManager.getPermissionHandler()Lcom/nijiko/permissions/PermissionHandler;
        at net.sacredlabyrinth.Phaed.PreciousStones.managers.PermissionsManager.startGroupManager(PermissionsManager.java:50)
        at net.sacredlabyrinth.Phaed.PreciousStones.managers.PermissionsManager.<init>(PermissionsManager.java:24)
        at net.sacredlabyrinth.Phaed.PreciousStones.PreciousStones.onEnable(PreciousStones.java:59)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:83)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:61)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)

    IGNORE THIS PHAED RELEASED A FIXED VERSION
    will leave it here incase anyone else has the same problem
     
  16. Offline

    baflgraf

    I'm having the same issue.
    I can't set up anything console side because the users.yml file gets reset whenever I /stop or /reload the server.
     
  17. Offline

    mrgreaper

    past the data.yml file into http://yaml-online-parser.appspot.com/ and it should tell you where the error is my bet is you used the tab button. yml is an evil evil evil file format that should never ever be used one one space one tab and POW the file is unreadable to the software
     
  18. Offline

    Tohclan

    Nope.. though I figured it out before the parser =P

    I missed a couple end tags on some commands. I also figured that the group manager that was included in essentials conflicted with this, and to top all that off the data.yml included in essentialsgroupmanager overrides the permissions plugin.
     
  19. Offline

    mrgreaper

    yeah use the proper group manager not the essentials one

    i like essentials but its fast becomming the one plugin to rule them all and not really that essential (already replaced the ban with mcban the groupmanger with this, th homes with myhome and help with tkelys help)

    any chance mr plugin dev you could add support to tkelys help plugin
     
  20. Offline

    AnjoCaido

    It's explained on the thread that any plugin that depends directly on GM older versions probably won't work.
    --- merged: Mar 4, 2011 4:39 AM ---

    This plugin was made to track changes on files and save the files needed at every certain time, and when the server stops. So it makes sure that any modification during the game will be saved.

    If you edit the file, you SHOULD NOT STOP THE SERVER. You should then before editing the file, toggle auto save off(using the proper command). Then, after editing the file, you run the command /manload
     
  21. Offline

    Thanks4trying

    i don't understand this anymore i am getting so many weird errors...
     
  22. Offline

    fugue2005

    love this plugin
     
  23. Offline

    OrtwinS

    Hi there! I really love this plugin, havent had any trouble with it (since it saves in a human readeble format).
    Rocksolid as far as I know, but I'm still using 0.9d.

    edit:
    I cut away a lot of questions about howto and compatebility.
    Bottom line: works with 493, no problems whatsoever, stepping over from 0.9d was a piece of cake, replace the .jars, restart server, and it works.

    Personal prefixes still do not work. (essentials.chat)
     
  24. Offline

    iBstoneyDave

    is there a way to configure a group so that they can only promote people to a specific group? For example, lets say I want my moderators to only be able to promote default users to builders.

    Also, when I set 'build: false' it doesn't work and the group is still able to build, any idea's on how to get it working?
     
  25. Offline

    Jobsti

    You need an Addon like Antibuild or AntiGrief.
     
  26. Offline

    baflgraf

    I can get to the step where you tell me to run the /manload command... but I it tells me I don't have permissions to run that command.
    And i'm an OP.
    The commands are shown in the /help list, though.
     
  27. Offline

    Nima304

    This plugin isn't even working for me on recommended build #493.
     
  28. Offline

    TheMap

    This plugin works fairly well on the new recommended build for me. So far on #493 I have gotten PreciousStones, Herosneak, HeroicDeath,Nocheat,Vanish,Essentials-home-spawn,gastronomic, torchburn, pumpkindiver, and multiverse. Seems fine to me.
     
  29. Offline

    naosia

    I need help urgently, my server has gone berserk, everyone has admin rights. From what I can tell, groupmanager fails to parse groups.yml (I just updated both my server, GroupManager and Essentials, and a couple of more plugins which are still broken, so I disabled them) These are the errors I get when loading the server.


    Show Spoiler

    Code:
    17:38:34 [INFO] Loaded EssentialsHome build 2.0.249 by Zenexer, ementalo, Aelux, and Brettflan
    17:38:34 [SEVERE] The following file couldn't pass on Parser.
    plugins/EssentialsGroupManager/worlds/herp/groups.yml loading Permissions v2.5 (Is it up to date?)
    java.lang.IllegalArgumentException: The following file couldn't pass on Parser.
    plugins/EssentialsGroupManager/worlds/herp/groups.yml
            at org.anjocaido.groupmanager.dataholder.WorldDataHolder.load(WorldDataHolder.java:476)
            at org.anjocaido.groupmanager.dataholder.worlds.WorldsHolder.loadWorld(WorldsHolder.java:351)
            at org.anjocaido.groupmanager.dataholder.worlds.WorldsHolder.initialLoad(WorldsHolder.java:64)
            at org.anjocaido.groupmanager.dataholder.worlds.WorldsHolder.<init>(WorldsHolder.java:56)
            at org.anjocaido.groupmanager.GroupManager.onEnable(GroupManager.java:76)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
            at com.nijikokun.bukkit.Permissions.Permissions.onEnable(Permissions.java:64)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:118)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:414)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:187)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:83)
            at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:61)
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
            at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    Caused by: java.lang.NullPointerException
            at org.anjocaido.groupmanager.dataholder.WorldDataHolder.load(WorldDataHolder.java:473)
            ... 18 more
    


    This is my groups.yml file:

    Code:
    groups:
      trusted:
        default: false
        permissions:
        - essentials.back
        - essentials.jump
        - essentials.mail.send
        - essentials.nick
        - essentials.tp
        - essentials.tppos
        - essentials.warp
        inheritance:
          - reg
        info:
          prefix: '&a[T] '
          build: true
          suffix: '&f '
      helper:
        default: false
        permissions:
        - essentials.delwarp
        - essentials.give
        - essentials.item
        - essentials.jail
        - essentials.kick
        - essentials.mute
        - essentials.setwarp
        - essentials.spawnmob
        - essentials.tphere
        - essentials.tpo
        - essentials.tpohere
        - essentials.tptoggle
        inheritance:
        - trusted
        info:
          prefix: '&b[H] '
          build: true
          suffix: '&f '
      admin:
        default: false
        permissions:
        - essentials.signs.*
        inheritance:
        - mod
        info:
          prefix: '&5[A] '
          build: true
          suffix: '&f '
      reg:
        default: false
        permissions:
        - essentials.kit
        - essentials.kit.*
        - essentials.time
        - essentials.warp
        inheritance:
        - guest
        info:
          prefix: '&f[R] '
          build: true
          suffix: '&f '
      mod:
        default: false
        permissions:
        - essentials.antioch
        - essentials.ban
        - essentials.banip
        - essentials.bigtree
        - essentials.kill
        - essentials.tree
        - essentials.unban
        - essentials.unbanip
        inheritance:
        - helper
        info:
          prefix: '&9[M] '
          build: true
          suffix: '&f '
      owner:
        default: false
        permissions:
        - '*'
        inheritance: []
        info:
          prefix: '&e[O] '
          build: true
          suffix: '&f '
      guest:
        default: true
        permissions:
        - essentials.afk
        - essentials.clearinventory
        - essentials.compass
        - essentials.depth
        - essentials.getpos
        - essentials.help
        - essentials.home
        - essentials.list
        - essentials.mail
        - essentials.me
        - essentials.motd
        - essentials.msg
        - essentials.rules
        - essentials.sethome
        - essentials.spawn
        - essentials.top
        - essentials.tpa
        - essentials.tpahere
        - essentials.whois
        inheritance: []
        info:
          prefix: '&7[G] '
          build: true
          suffix: '&f '
    



    Code:
    groups:
        guest:
            default: true
            info:
                build: true
                prefix: '&7[G] '
                suffix: '&f '
            inheritance:
            permissions:
            - essentials.depth
            - essentials.getpos
            - essentials.compass
            - essentials.msg
            - essentials.afk
            - essentials.rules
            - essentials.motd
            - essentials.me
            - essentials.list
            - essentials.list
            - essentials.mail
            - essentials.helpop
            - essentials.whois
            - essentials.nick
            - essentials.help
            - essentials.tpa
            - essentials.tpaccept
            - essentials.tpdeny
            - essentials.home
            - essentials.sethome
            - essentials.spawn
            - essentials.signs.protection.use
            - essentials.signs.free.use
            - essentials.signs.disposal.use
            - essentials.signs.heal.use
        reg:
            default: false
            info:
                build: true
                prefix: '[R] '
                suffix: ' '
            inheritance: guest
            permissions:
            - essentials.top
            - essentials.mail.send
            - essentials.kit
            - essentials.kit.*
            - essentials.tp
            - essentials.tpahere
            - essentials.heal
        trusted:
            default: false
            info:
                build: true
                prefix: '&a[R] '
                suffix: '&f '
            inheritance: reg
            permissions:
            - essentials.jump
            - essentials.back
            - essentials.nick
            - essentials.god
            - essentials.tp
            - essentials.tphere
            - essentials.warp
        helper:
            default: false
            info:
                build: true
                prefix: '&b[H] '
                suffix: '&f '
            inheritance: trusted
            permissions:
            - essentials.kick
            - essentials.mute
            - essentials.item
            - essentials.give
            - essentials.jail
            - essentials.tpo
            - essentials.tpohere
            - essentials.tptoggle
        mod:
            default: false
            info:
                build: true
                prefix: '&2[M] '
                suffix: '&f '
            inheritance: helper
            permissions:
            - essentials.ban
            - essentials.banip
            - essentials.unban
            - essentials.unbanip
            - essentials.time
            - essentials.tree
            - essentials.bigtree
            - essentials.setwarp
            - essentials.delwarp
            - essentials.tppos
            - essentials.kill
            - essentials.clearinventory
            - essentials.signs.*
            - essentials.antioch
        admin:
            default: false
            info:
                build: true
                prefix: '&4[A] '
                suffix: '&f '
            inheritance: mod
            permissions:
            - essentials.spawnmob
        owner:
            default: false
            info:
                build: true
                prefix: '&e[O] '
                suffix: '&f '
            inheritance: admin
            permissions:
            - '*'




    I'd be thankful for quick help, I just can't seem to find the syntax error in groups.yml.

    ~naosia


    *Edit: This data.yml file worked perfectly before (I obviously had the contents of my current users.yml in it aswell) and then it automatically edited it. Not sure what has caused this...

    *Edit #2: Okay, I just rewrote the entire groups.yml file, yet there's no change. Here's the new one, should only be changed minorly. This also rules out indentation error...

    *Edit #3: I just ran the file through an online YAML parser, and the output was fine. I'd be extremely grateful for any help!
     
  30. Offline

    eagledude4

    Are we allowed to alter the setup of groups.yml?
     
  31. Offline

    naosia


    Make sure you shut down the server completely before attempting to edit your groups.yml, otherwise the plugin will overwrite it with backups.
     
Thread Status:
Not open for further replies.

Share This Page