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

    eagledude4

    You need a seperate chat plugin. I use ichat and it works.
    [MERGETIME="1299797847"][/MERGETIME]
    Your server console tells me that your not using a seperate chat plugin. Try IChat
     
  3. Offline

    cyberbobjr

    Hi,
    When i modify manually (with a text editor) the files "users.yml" and "groups.yml" under :
    /plugins/GroupManager/worlds/world

    If i stop minecraft server, the modifications i have made disappear, and the config files rollback to original...
    Manual modification is not permitted ?

    Thanks for your help.
    Regards
     
  4. Offline

    user_2408

    You need to re-read the changes each time you make them manually. As such you need to /manload. That'll re-read in those changes, and you can safely shut down. Or once you manload, mansave! :)
     
  5. Offline

    svavart

  6. Offline

    JagerPrime

    It's not really all that important, but is it an 'issue' with this or something else that color's don't work on groups? If I remove the FakePermissions file, the colors restore, but obviously that is counter-productive. lol Like I said, it's not really an issue, but more of a curiosity.
     
  7. Offline

    cyberbobjr

    Hi AnjoCaido,
    please please please, can you respect the standard of yaml and indent your list structure (permissions, subgroups,etc) ?
    Many thanks
    regards
     
  8. Offline

    Damien711

    Im having trouble with the /manuadd add and all commands related towards that even though im in ops.txt file and i added the groupmanager* into the config it still wont let me promote players in game. Please help.
     
  9. Offline

    DannyCare


    Haha it's ok :) I just don't have the hours in the day to read all the documentation, I'm redoing all the permissions and groups manually now as I need to correct any mistakes. This plugin is fantastic so far, much more intuitive than Permissions.

    Also, I've tried the /mod (playername) (group) command that was in Permissions (the one that allowed you to modify the groups of players whilst in-game) and it didn't seem to work for me. Have you implemented this as a different command name? Or are you relying on another plugin to do that? As I said I'd love to read this entire thread but I don't have enough time to! :p

    Your help is greatly appreciated ^_^
     
  10. Offline

    Shadower108

    I'm having the opposite issue. I can change the color of the prefix of multiple groups, but the names are using the generic red color. I am unable to change the name color. Still messing around with it though.
     
  11. Offline

    DannyCare

    I found it. /manpromote ;)

    Love you
    [MERGETIME="1299843238"][/MERGETIME]
    I have groupmanager as part of the essentials package, and I found a lot of variables for chat names and styles in Plugins>Essentials>config.yml

    :)
     
  12. Offline

    AnjoCaido

    Some time ago, Essentials chat had problems when you change prefix/suffix, because it sets the "chat format" at every user login. I'm not sure if they changed it yet.

    You might try a different chat plugin. iChat 1.6(used until yesterda) and HeroChat(what we are using now, that the server has grown) works perfectly me.
     
  13. Offline

    Raeson123

    Can someone please check out this group.yml and try to fix it? I've been trying everything.. I even tried reinstalling it but nothing D:
     

    Attached Files:

  14. Offline

    AnjoCaido

    You just idented wrong the group Moderator. Add one more space before it and it will work.
     
  15. Offline

    Tulips

    where do i add the warpzor codes :/ its confusing on where to put stuff, I tried but it didn't effect anything
     
  16. Offline

    BigRedWood

    Converting to this over permissions was a snap. I did start a fresh build tho, and copied all of the rights from permissions and plugged them into the groups.yml. I also tweaked the colors for chat so they reflected like they did previous to groupmanager.

    All in all painless, and none of my users can even tell the difference. I am having a lot less error messages from plugins, since I tested each one before I installed the next one. Also copied all of my user data and world data, plus warp locations and lwc, izone protected data. Fun morning.
     
  17. Offline

    Shadower108

    Yup I figured it out... really dumb mistake of mine... :rolleyes:

    But other wise, great plugin! Great work!
     
  18. Offline

    zoathewind

    hey for some reason by default group CAN build, although its set to false, heres my groups.yml,

    Code:
    groups:
      member:
        default: false
        permissions:
        - defaultcommands.banlist
        - defaultcommands.message.other
        - defaultcommands.online
        - defaultcommands.spawn.self
        - defaultcommands.stack
        - kit.kit
        - kit.tools
        inheritance:
        - default
        info:
          prefix: ''
          build: true
          suffix: ''
      default:
        default: true
        permissions: []
        inheritance: []
        info:
          prefix: ''
          build: false
          suffix: ''
      admin:
        default: false
        permissions:
        - creativestick.use
        - defaultcommands.*
        - groupmanager.manuadd
        - kit.admin
        - kit.kit
        - kit.rs
        - worldedit.*
        - warpz0r.warp
        - warpz0r.set
        - warpz0r.remove
        - warpz0r.list
        - warpz0r.warpto
        - warpz0r.home
        - warpz0r.sethome
        - warpz0r.worldwarp
        - warpz0r.worldhome
        inheritance:
        - donator
        info:
          prefix: ''
          build: true
          suffix: ''
      owner:
        default: false
        permissions:
        - '*'
        inheritance:
        - admin
        info:
          prefix: ''
          build: true
          suffix: ''
      donator:
        default: false
        permissions:
        - defaultcommands.banlist
        - defaultcommands.message.other
        - defaultcommands.online
        - defaultcommands.spawn.self
        - defaultcommands.stack
        - kit.kit
        - kit.tools
        - kit.rs
        - warpz0r.home
        - warpz0r.sethome
        - warpz0r.worldhome
        - warpz0r.warp
        inheritance:
        - member
        info:
          prefix: ''
          build: true
          suffix: ''
    and yeah, i know that the groups are out of order, my default group is "default"
     
  19. Offline

    BigRedWood

    In \essentials\config.yml do you have:
    Code:
        # Should people with build: false in permissions be allowed to build
        # Set true to disable building for those people
        build: true
    If this is false, you are negating the build option in groups/yml. (Default is set to false)
     
  20. Offline

    Aznboi

    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: ''
                suffix: ''
            inheritance:
            - Default
            permissions:
            - essentials.tp
            - essentials.tphere
            - essentials.item
            - essentials.give
        SemiAdmin:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            - Moderator
            permissions:
            - +groupmanager.mandemote
            - +groupmanager.manpromote
            - -groupmanager.*
            - '*'
        Spectator:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance: []
            permissions:
        Guest:
            default: true
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Spectator
            permissions:
        Member:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Guest
            permissions:
        Builder:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Member
            permissions:
        Designer:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Builder
            permissions:
        Architect:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Designer
            permissions:
        Supporter:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Architect
            permissions:
        Donor:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Architect
            permissions:
        Samaratin:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Supporter
            - Donor
            permissions:
        VIP:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - Supporter
            - Donor
            permissions:
        Moderator:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - VIP
            permissions:
        Admin:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            - Moderator
            permissions:
        SuperAdmin:
            default: false
            info:
                build: false
                prefix: ''
                suffix: ''
            inheritance:
            - Admin
            permissions:
        ChiefAdmin:
            default: false
            info:
                build: true
                prefix: ''
                suffix: ''
            inheritance:
            - SuperAdmin
            permissions:
            - autosave.save
            - autosave.toggle
            - autosave.status
            - autosave.interval
            - autosave.broadcast
            - autosave.version
            - autosave.debug
            - autosave.world
            - autosave.world.add
            - autosave.world.rem
            - +groupmanager.mandemote
            - bb.admin.watch
            - bb.admin.info
            - bb.admin.rollback
            - bb.admin.*
            - citizens.create
            - citizens.settext
            - citizens.remove.singular
            - citizens.remove.all
            - citizens.help
            - citizens.color
            - citizens.setitem
            - citizens.move
            - epicgates.admin
            - epiczones.ignoremapradius
            - epiczones.ignorepermissions
            - essentials.signs.protection.create
            - essintials.signs.protection.use
            - essentials.signs.free.create
            - essentials.signs.free.use
            - essentials.signs.disposal.create
            - essentials.signs.disposal.use
            - essentials.signs.heal.create
            - essentials.signs.heal.use
            - essentials.signs.trade.create
            - essentials.signs.trade.use
            - essentials.signs.buy.create
            - essentials.signs.buy.use
            - essentials.signs.sell.create
            - essentials.signs.sell.use
            - essentials.depth
            - essentials.getpos
            - essentials.compass
            - essentials.top
            - essentials.jump
            - essentials.back
            - essentials.world
            - essentials.tptoggle
            - essentials.tpa
            - essentials.tpaccept
            - essentials.tpdeny
            - essentials.tp
            - essentials.tpo
            - essentials.tpahere
            - essentials.tphere
            - essentials.tpohere
            - essentials.tppos
            - essentials.home
            - essentials.sethome
            - essentials.warp
            - essentials.setwarp
            - essentials.delwarp
            - essentials.eco
            - essentials.worth
            - essentials.sell
            - essentials.balance
            - essentials.pay
            - essentials.msg
            - essentials.home
            - essentials.afk
            - essentials.rules
            - essentials.motd
            - essentials.me
            - essentials.list
            - essentials.mail
            - essentials.mail.send
            - essentials.helpop
            - essentials.whois
            - essentials.nick
            - essentials.essentials
            - essentials.reloadall
            - essentials.gc
            - essentials.plugin
            - essentials.spawnmob
            - essentials.clearinventory
            - essentials.broadcast
            - essentials.antioch
            - essentials.burn
            - essentials.ext
            - essentials.kill
            - essentials.ping
            - essentials.ban
            - essentials.banip
            - essentials.unban
            - essentials.unbanip
            - essentials.mute
            - essentials.kick
            - essentials.kickall
            - essentials.jail
            - essentials.setjail
            - essentials.give
            - essentials.item
            - essentials.kit
            - essentials.kit.<kitname>
            - essentials.kit.*
            - essentials.time
            - essentials.tree
            - essentials.bigtree
            - essentials.god
            - essentials.heal
            - essentials.spawn
            - essentials.setspawn
            - essentials.chat.shout
            - eseentials.chat.question
            - essentials.chat.spy
            - groupmanager.manuadd
            - groupmanager.manudel
            - groupmanager.mangadd
            - groupmanager.mangdel
            - groupmanager.manuaddp
            - groupmanager.manudelp
            - groupmanager.manulistp
            - groupmanager.manucheckp
            - groupmanager.mangaddp
            - groupmanager.mangdelp
            - groupmanager.manglistp
            - groupmanager.mangchekp
            - groupmanager.mangaddi
            - groupmanager.mangdeli
            - groupmanager.manuaddv
            - groupmanager.manudelv
            - groupmanager.manulistv
            - groupmanager.manucheckv
            - groupmanager.mangaddv
            - groupmanager.mangdelv
            - groupmanager.manglistv
            - groupmanager.mangcheck
            - groupmanager.manwhois
            - groupmanager.tempadd
            - groupmanager.tempdel
            - groupmanager.templist
            - groupmanager.tempdelall
            - groupmanager.mansave
            - groupmanager.manload
            - groupmanager.listgroups
            - groupmanager.manpromote
            - groupmanager.mandemote
            - groupmanager.mantogglevalidate
            - groupmanager.mantogglesave
            - groupmanager.manworld
            - groupmanager.manselect
            - groupmanager.manclear
            - groupmanager.*
            - herochat.admin
            - herochat.create
            - herosneak.sneak
            - herosneak.auto
            - heroicdeath.messages
            - iConomy.payment
            - iConomy.access
            - iConomy.rank
            - iConomy.list
            - iConomy.admin.grant
            - iConomy.admin.set
            - iConomy.admin.stats
            - iConomy.admin.reset
            - iSee.admin
            - jail.command.jailcreate
            - jail.command.jaildelete
            - jail.command.jail
            - jail.command.unjail
            - jail.command.jailtransfer
            - jail.command.jailtransferall
            - jail.command.jailcheck
            - jail.command.jailtelein
            - jail.command.jailteleout
            - jail.command.jaillist
            - jail.command.unjailforce
            - jail.command.jailclear
            - jail.command.jailclearforce
            - jail.command.jailbackup
            - jail.modifyjail
            - jail.usercmd.jailstatus
            - lwc.protect
            - lwc.mod
            - lwc.admin
            - lwc.blockinventory
            - mcmmo.motd
            - mcmmo.regeneration
            - mcmmo.chat.partychat
            - mcmmo.chat.adminchat
            - mcmmo.commands.ptp
            - mcmmo.commands.party
            - mcmmo.commands.whois
            - mcmmo.commands.myspawn
            - mcmmo.commands.setmyspawn
            - mcmmo.skills.woodcutting
            - mcmmo.skills.repair
            - mcmmo.skills.unarmed
            - mcmmo.skills.archery
            - mcmmo.skills.herbalism
            - mcmmo.skills.excavation
            - mcmmo.skills.swords
            - mcmmo.skills.acrobatics
            - mcmmo.skills.axes
            - mcmmo.skills.*
            - mcmmo.tools.mmoedit
            - mcmmo.tools.mcgod
            - movecraft.car.*
            - movecraft.drill.*
            - movecraft.aquatic.*
            - movecraft.boat.*
            - movecraft.ship.*
            - movecraft.submarine.*
            - movecraft.aircraft.*
            - movecraft.airship.*
            - movecraft.bomber.*
            - movecraft.*
            - mulitverse.world.create
            - mulitverse.world.remove
            - mulitverse.world.import
            - mulitverse.world.spawn
            - mulitverse.world.setspawn
            - mulitverse.portal.create
            - mulitverse.portal.remove
            - mulitverse.portal.select
            - mulitverse.portal.destination
            - mulitverse.portal.list
            - mulitverse.tp
            - mulitverse.list
            - nocheat.speedhack
            - nocheat.moving
            - nocheat.airbuild
            - nocheat.bedteleport
            - nocheat.notify
            - nocheat.p
            - nocheat.*
            - nSpleef.member
            - nSpleef.admin
            - plugman.list
            - plugman.describe
            - plugman.admin
            - preciousstones.benefit.*
            - preciousstones.whitelist.*
            - preciousstones.bypass.*
            - preciousstones.alert.*
            - preciousstones.admin.*
            - preciousstones.override.*
            - RedeemCodes.Code
            - RedeemCodes.Codep
            - RedeemCodes.RCode
            - RedeemCodes.list
            - signtrader.makeGlobalSign
            - signtrader.makePersonalSign
            - signtrader.use
            - signtrader.admin.breakAnySign
            - superslots.*
            - superslots.player.*
            - towny.admin
            - towny.town.new
            - towny.town.claim
            - towny.nation.new
            - towny.wild.*
            - towny.wild.build
            - towny.wild.destroy
            - towny.wild.switch
            - towny.wild.item_use
            - towny.wild.block.[blockid]
            - towny.spawntp
            - towny.publickspawntp
            - tpack.boomstick
            - tpack.cuboid
            - tpack.time
            - tpack.snap
            - tpack.items
            - tpack.*
            - /regionmembership
            - /locate
            - /region
            - /god
            - /heal
            - /stopfire
            - /allowfire
            - /slay
            - /stack
            - /reloadwg
            - uQuest.CanQuest
            - worldedit.chunkinfo
            - worldedit.listchunks
            - worldedit.delchunks
            - worldedit.clipboard.clear
            - worldedit.clipboard.load
            - worldedit.clipboard.save
            - worldedit.clipboard.copy
            - worldedit.clipboard.flip
            - worldedit.clipboard.rotate
            - worldedit.clipboard.cut
            - worldedit.clipboard.paste
            - worldedit.reload
            - worldedit.limit
            - worldedit.generation.cylinder
            - worldedit.generation.cylinder
            - worldedit.generation.sphere
            - worldedit.generation.sphere
            - worldedit.generation.forest
            - worldedit.generation.pumpkins
            - worldedit.history.clear
            - worldedit.history.redo
            - worldedit.history.undo
            - worldedit.navigation.unstuck
            - worldedit.navigation.ascend
            - worldedit.navigation.descend
            - worldedit.navigation.thru
            - worldedit.navigation.jumpto
            - worldedit.navigation.ceiling
            - worldedit.navigation.up
            - worldedit.region.overlay
            - worldedit.region.walls
            - worldedit.region.faces
            - worldedit.region.smooth
            - worldedit.region.replace
            - worldedit.region.stack
            - worldedit.region.set
            - worldedit.region.move
            - worldedit.scripting.execute
            - worldedit.scripting.execute
            - worldedit.selection.chunk
            - worldedit.selection.pos
            - worldedit.selection.hpos
            - worldedit.wand
            - worldedit.wand.toggle
            - worldedit.selection.contract
            - worldedit.selection.outset
            - worldedit.analysis.distr
            - worldedit.analysis.count
            - worldedit.selection.size
            - worldedit.selection.shift
            - worldedit.selection.expand
            - worldedit.selection.inset
            - worldedit.snapshots.restore
            - worldedit.snapshots.list
            - worldedit.snapshots.restore
            - worldedit.superpickaxe
            - worldedit.superpickaxe.area
            - worldedit.superpickaxe.recursive
            - worldedit.superpickaxe
            - worldedit.tool.replacer
            - worldedit.tool.data-cycler
            - worldedit.brush.sphere
            - worldedit.brush.cylinder
            - worldedit.brush.clipboard
            - worldedit.brush.smooth
            - worldedit.tool.info
            - worldedit.tool.tree
            - worldedit.tool.replacer
            - worldedit.tool.data-cycler
            - worldedit.brush.sphere
            - worldedit.brush.cylinder
            - worldedit.brush.clipboard
            - worldedit.brush.smooth
            - worldedit.tool.info
            - worldedit.tool.tree
            - worldedit.fill.recursive
            - worldedit.fixlava
            - worldedit.fixwater
            - worldedit.removeabove
            - worldedit.removebelow
            - worldedit.removenear
            - worldedit.replacenear
            - worldedit.snow
            - worldedit.thaw
            - worldedit.extinguish
            - worldedit.butcher
            - worldedit.remove
            - worldedit.fill
            - worldedit.drain
            - worldedit.*
            - '*'
                
    Could someone help me please and tell me whats wrong with this?
     
  21. Offline

    BigRedWood

    Hard to tell you what is 'wrong' with it, since you haven't actually told us what the issue is you're experiencing.
    BTW, when you have a permission set as *, you don't need any other permissions listed, since * states they have ALL permissions.
     
  22. Offline

    Sentinel195

    I updated my Groupmanager plugin from a previous version and now it doesn't work
    please help

    this is my groups.yml file
    Show Spoiler

    groups:
    Default:
    default: true
    info:
    prefix: ''
    build: false
    suffix: ''
    inheritance:
    permissions:
    - +DeathChest.*
    - +essentials.spawn
    - +essentials.motd
    - +essentials.help
    - +essentials.home
    - +essentials.world
    - +essentials.warp
    - +essentials.sethome
    - -essentials.*
    - -groupmanager.*'
    - -citizens.*
    Admin:
    default: false
    info:
    prefix: ''
    build: true
    suffix: ''
    inheritance:
    permissions:
    - -essentials.essentials
    - -essentials.reloadall
    - '*'
    Moderator:
    default: false
    info:
    prefix: '&c'
    build: true
    suffix:
    inheritance:
    permissions:
    - +DeathChest.*
    - +essentials.*
    - -essentials.antioch
    - -essentials.essentials
    - -essentials.reloadall
    - -essentials.ban
    - -essentials.banip
    - -essentials.jail
    - -essentials.setspawn
    - -citizens.*
    Serverowner:
    default: false
    info:
    prefix: ''
    build: true
    suffix: ''
    inheritance:
    permissions:
    - '*'

     
  23. Offline

    AmazingHayman

    I also have a problem.

    Code:
    groups:
      ServerModerator:
        default: false
        permissions:
        - +groupmanager.manudel
        - +groupmanager.manuadd
        - +groupmanager.manulistp
        - +groupmanager.manucheckp
        - +groupmanager.manglistp
        - +groupmanager.mangcheckp
        - +groupmanager.manulistv
        - +groupmanager.manucheckv
        - +groupmanager.manglistv
        - +groupmanager.mangcheckv
        - +groupmanager.manwhois
        - +groupmanager.mansave
        - +groupmanager.manload
        - +groupmanager.listgroups
        - +essentials.*
        - -groupmanager.*
        - -essentials.top
        - -essentials.jump
        - -essentials.world
        - -essentials.portal
        - -essentials.setwarp
        - -essentials.delwarp
        - -essentials.plugin
        - -essentials.antioch
        - -essentials.setjail
        - -essentials.time
        - -essentials.setspawn
        - -essentials.signs.mail.create
        - -essentials.signs.mail.use
        - -essentials.signs.protection.create
        - -essentials.signs.protection.use
        - -essentials.signs.free.create
        - -essentials.signs.free.use
        - -essentials.signs.disposal.create
        - -essentials.signs.disposal.use
        - -essentials.signs.heal.create
        - -essentials.signs.heal.use
        - -essentials.signs.buy.create
        - -essentials.signs.sell.create
        - -essentials.help
        inheritance: []
        info:
          prefix: '&1[ServerMod]'
          build: true
          suffix: ''
      User:
        default: false
        permissions:
        - essentials.me
        - essentials.afk
        - essentials.mail.send
        - essentials.worth
        - essentials.balance
        - essentials.pay
        inheritance:
        - gast
        info:
          prefix: ''
          build: true
          suffix: ''
      VIP:
        default: false
        permissions:
        - essentials.afk
        - essentials.balance
        - essentials.mail.send
        - essentials.me
        - essentials.pay
        - essentials.worth
        inheritance:
        - gast
        info:
          prefix: '&e[VIP]'
          build: true
          suffix: ''
      GlobalerModerator:
        default: false
        permissions: []
        inheritance:
        - servermoderator
        info:
          prefix: '&2[GlobalerMod]'
          build: true
          suffix: ''
      Verbrecher:
        default: false
        permissions:
        - essentials.motd
        - essentials.rules
        - essentials.list
        inheritance: []
        info:
          prefix: '&7[Verbrecher]'
          build: false
          suffix: ''
      Gast:
        default: true
        permissions:
        - essentials.list
        - essentials.motd
        - essentials.msg
        - essentials.rules
        - essentials.spawn
        inheritance: []
        info:
          prefix: '&7[Gast]'
          build: false
          suffix: ''
      Admin:
        default: false
        permissions:
        - '*'
        inheritance: []
        info:
          prefix: '&4[Admin]'
          build: true
          suffix: ''
    
    My group "GlobalerModerator" can still use commands like "/time day", but I think it's not allowed for them, because I set a "-" at the front of that command. With the GroupManager Nodes the whole thing works fine.
     
  24. Offline

    xezesis

    Im trying to convert my permissions and FakePermisssions does nothing so i went and manually cut pasted my permissions from /Permissions/world.config into two separate files but it still doesn't work??
     
  25. Offline

    zipfe

    Trying to add a player name that is all numbers, like 23401, causes the plugin to fail, giving "integer can't be... error".

    Any chance to fix that? Would be awesome.

    Other than that, everything works perfect, thanks for your great plugin.
     
  26. Offline

    zoathewind

    i dont have essentials, so i guess it doesnt work without it, whatever, already installed a plugin to fix that.. thanks anyway
     
  27. Offline

    Aznboi

    Haha my bad. well the thing is, whenever i log on, there is no motd or any entering message like it used to when the server files were clean. The commands dont work at all and i think it is an error in the way i typed it, but im not sure. basically no commands work in my server and i get a whole bunch of [SEVERE] stuff whenever i talk in cmd. I would post it here but it wont let me copy off of cmd. and just a bunch of other errors -_-;;;; any suggestions?
     
  28. Offline

    AnjoCaido

    Put inside ' '... just like '23401'
     
  29. Offline

    Raeson123

    Tried it, nothing worked [​IMG]
     
  30. Offline

    BigRedWood

    I was having this same problem when i upgraded. so i rolled back to the previous versions for the live server. Next i started fresh, and installed each item separately on my local machine, and tested each one before i added another one. If you have the time and patience, you may want to try this route. Included is my groups.yml file so you can see what a working one looks like:
    Code:
    groups:
      User:
        default: true
        permissions:
        - essentials.back
        - essentials.help
        - essentials.helpop
        - essentials.home
        - essentials.kit
        - essentials.kit.starter
        - essentials.list
        - essentials.mail
        - essentials.motd
        - essentials.msg
        - essentials.rules
        - essentials.sethome
        - essentials.signs.buy.use
        - essentials.signs.disposal.use
        - essentials.signs.free.use
        - essentials.signs.heal.use
        - essentials.signs.protection.use
        - essentials.signs.sell.use
        - essentials.signs.trade.create
        - essentials.signs.trade.use
        - essentials.spawn
        - essentials.suicide
        - essentials.tpa
        - essentials.tpaccept
        - essentials.tpdeny
        - essentials.tptoggle
        - lwc.protect
        - mcmmo.commands.myspawn
        - mcmmo.commands.party
        - mcmmo.commands.partychat
        - mcmmo.commands.ptp
        - mcmmo.commands.setmyspawn
        - mcmmo.commands.whois
        - mcmmo.motd
        - mcmmo.regeneration
        - mcmmo.skills.*
        - mcmmo.skills.repair
        inheritance:
        - default
        info:
          prefix: '&a^&f'
          build: true
          suffix: ''
      Default:
        default: false
        permissions: []
        inheritance: []
        info:
          prefix: '&9_&f'
          build: false
          suffix: ''
      SemiAdmin:
        default: false
        permissions:
        - +groupmanager.mandemote
        - +groupmanager.manpromote
        - -groupmanager.*
        - '*'
        inheritance:
        - moderator
        info:
          prefix: '&c'
          build: false
          suffix: SemiAdmin
      Trusted:
        default: false
        permissions: []
        inheritance:
        - User
        info:
          prefix: '&c^&f'
          build: true
          suffix: ''
      Moderator:
        default: false
        permissions:
        - cleaner.preview
        - cleaner.preview.restore
        - essentials.ban
        - essentials.chat.shout
        - essentials.delwarp
        - essentials.give
        - essentials.item
        - essentials.togglejail
        - essentials.kick
        - essentials.kit.*
        - essentials.mute
        - essentials.protect
        - essentials.protect.*
        - essentials.setwarp
        - essentials.signs.*
        - essentials.spawn
        - essentials.tp
        - essentials.tphere
        - essentials.tree
        - essentials.unban
        - essentials.warp
        - lwc.mod
        - mcmmo.chat.adminchat
        inheritance:
        - user
        info:
          prefix: '&5*&f'
          build: true
          suffix: ''
      Admin:
        default: false
        permissions:
        - essentials.burn
        - essentials.chat.shout
        - essentials.chat.spy
        - essentials.plugin
        - essentials.protect
        - essentials.setjail
        - lwc.admin
        - lwc.blockinventory
        - mcmmo.tools.mcgod
        - mcmmo.tools.mmoedit
        inheritance:
        - semiadmin
        info:
          prefix: '&c@&f'
          build: true
          suffix: ''
    
     
  31. Offline

    Thenaz

    OK I just downloaded the newest version. I use the all the essentials plugins, world edit, and world guard.I deleted the essentials group managers and ran my server with these jar files. Next I went to find the world file the the groups and users the files are a mess and don't look anything like the examples?
    [MERGETIME="1299888672"][/MERGETIME]
    I managed to randomly get the same format I saved my user in it reset the server nothing worked so i looked at the files back to the messy format!
    help?
     
Thread Status:
Not open for further replies.

Share This Page