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

    aehoooo

    u need a plugin to prevent them from building. Try antigrief plugin.
     
  3. Offline

    Stig Engfdal


    Oh, uhm, where do i add this? im a new user of Bukkit and these mods
     
  4. Offline

    DIENER

    Open up GroupManager data.yml and start editing.
    Read the topic of how permissions work.
     
  5. Offline

    nagazi

    okay thank you aehoooo nice tip
     
  6. Offline

    Stig Engfdal

    hmm cant get it to work DIENER, ive tryed to added those prefix for admin in the data.yml without luck, and reloaded / started / stoped server without luck
     
  7. Offline

    Jath

    So I'm having an issue someone else told me to try, which was use the manuadd <name> Admin. But, every time I have tried that, it doesn't seem to work as I get an error. Has anyone seen this error before?
    Error
     
  8. Offline

    anon

    I would love to help, but imageshack likes to troll my country....
    [​IMG]
     
  9. Offline

    Jath

    Damn. That sucks. Lol. How about Photobucket?
     
  10. Offline

    oogzy

    I recently created a Bukkit server after running a regular Minecraft server for a little while, and I've just come across this problem.

    Basically, lower "groups" can still do higher level commands/banned commands.
    For example, I put my friend Cyber as "Guest" and then as "Member" and asked him to test if /broadcast worked. It did, which was odd considering my data.yml. I've posted it on Pastebin for people to look at correct it.

    http://pastebin.com/ebEKthft

    Thanks, I've no idea why it's doing this.
    I can post my additional .yml docs on request.
     
  11. I have copyed my config.yml into the data.yml of GroupManager but it do not work.
     
  12. Any chance you could provide a wget friendly link? I keep a list of plugin .jar urls and run an update script that only downloads if they've been updated - but for your zip i download it every time the script runs so I can give it the unzip whiteglove treatment.
     
  13. Offline

    jenso942

    Can i use the config i used for Nijis permissions to this ?
     
  14. Offline

    nagazi

    I have a new problem
    Code:
    users:
    Nagazi:
        permissions: ['*']
        group: Support
    groups:
      Stasi:
        default: false
        permissions: [/region, essentials.ban, essentials.banip, essentials.delwarp, essentials.give,
          essentials.item, essentials.item, essentials.kick, essentials.kill, essentials.setwarp,
          essentials.time, essentials.unban, essentials.unbanip, jail.*, pdoors.mod, worldedit.*, groupmanager.manuadd, groupmanager.manudel, groupmanager.mansave, groupmanager.manaddp, groupmanager.listgroups]
        inheritance: [arbeiter]
        info: {prefix: '&2', build: true, suffix: ''}
      Visitor:
        default: true
        permissions: [essentials.afk, essentials.helpop, essentials.list, essentials.mail.read,
          essentials.mail.send, essentials.mail.send, essentials.msg, essentials.rules,
          essentials.spawn, essentials.tpa, essentials.tpaccept, essentials.tpahere, essentials.warp,
          pdoors.main]
        inheritance: []
        info: {prefix: '&6', build: false, suffix: ''}
      Support:
        default: false
        permissions: [essentials.broadcast, essentials.clearinventory, essentials.delwarp,
          essentials.give, essentials.modgrp, essentials.modgrpoverride, pdoors.admin]
        inheritance: [stasi]
        info: {prefix: '&4', build: true, suffix: ''}
      Leiter:
        default: false
        permissions: ['*']
        inheritance: [support]
        info: {prefix: '&c', build: true, suffix: ''}
      Arbeiter:
        default: false
        permissions: [essentials.help, essentials.home, essentials.kit.tool, essentials.kit.tools,
          essentials.list, essentials.sethome, essentials.tpdeny, lwc.protect, pdoors.main]
        inheritance: [visitor]
        info: {prefix: '&e', build: true, suffix: ''}
    plugin:
      permissions: {system: default}
    This is my data.yml

    I can´t a new Player like "Visitor" promote or demote.
    And I have the * behind my permissions.
    The problem called:

    You are not allowed to use that command.
    /command <player> <group>
     
  15. Offline

    Hrdkr

    Good plugin, hope it will be alive a bit longer than Permissions. But I didn't understood why there are two identical data.yml configs in EssentialsGroupManager and GroupManager directories, is it Essentials issue?
    Is it possible to disable this console output:
    Code:
    22:30:05 [INFO] GroupManager - Saving your data...
    22:30:05 [INFO] GroupManager - Saving done!
    22:40:05 [INFO] GroupManager - Backing up your data...
    22:40:05 [INFO] GroupManager - Backup done!
    22:40:05 [INFO] GroupManager - Saving your data...
    22:40:05 [INFO] GroupManager - Saving done!
    22:40:05 [INFO] GroupManager - Backing up your data...
    22:40:05 [INFO] GroupManager - Backup done!
    22:40:05 [INFO] GroupManager - Saving your data...
    22:40:05 [INFO] GroupManager - Saving done!
    ?
     
  16. Offline

    Bloq

    Heyy Anjo love your work, are you going to update your launchers?
     
  17. Offline

    AnjoCaido

    Version 0.99d:
    • Fixed more small bugs.
    • Saves in human readable format(yes, that block style you and me like a lot)
    • Deletes backups older than 24 hours

    I'll be off for more two days. Than I'll be back at full power!

    Why should I? The jar still works.
    --- merged: Feb 28, 2011 8:30 PM ---
    The issue is that you installed two GroupManager. You have to choose one. Or keep GroupManager, or EssentialsGroupManager. They are exactly the same. When it updates here, it updates there.

    These messages will occur every 10 minutes. But you can choose the time the server takes to save (data.yml content), editing on config.yml
     
  18. Offline

    Jath

    Is there possibly a way to see user suffix's in-game? Like, as the owner of the server, see the default 'King' suffix of myself? Or whatever I change it to?
     
  19. Offline

    Soul Reaper

    What does the changelog means when it is says GM saves in a user readable format? My data.yml is still formatted the same.
     
  20. Offline

    AnjoCaido

    You need a plugin to use whatever data GroupManager provides... because it only provides data for other plugins.

    So you need a Chat plugin to see prefix or suffix.
    You need a plugin to validate if you can - or not - build.
    Etc.
    --- merged: Feb 28, 2011 9:31 PM ---
    When you save your file it will not save list in [ brackets ].... it will list the old fashioned way ....
    list:
    - content1
    - content2

    And every node will have it's own line.

    My server data.yml after the first auto-save(without users section):
    Code:
    groups:
      NotRegistered:
        default: false
        permissions:
        - essentials.motd
        - essentials.rules
        inheritance: []
        info:
          prefix: '&f'
          build: false
          suffix: NotRegistered
      Jailed:
        default: false
        permissions: []
        inheritance: []
        info:
          prefix: '&8'
          build: false
          suffix: Jailed
      watchman:
        default: false
        permissions:
        - bb.admin.info
        - flashlight.normal
        - vanish.vanish
        - essentials.tp
        - essentials.tphere
        - essentials.warp
        - essentials.kick
        - essentials.banip
        - essentials.unbanip
        - essentials.whois
        - godmode.god.self
        - logblock.lookup
        - logblock.area
        - logblock.rollback
        - groupmanager.manwhois
        - groupmanager.listgroups
        - groupmanager.manpromote
        - groupmanager.mandemote
        inheritance:
        - miner
        - farmer
        - craftsman
        - trader
        - healer
        info:
          prefix: '&b'
          build: true
          suffix: Watchman
      healer:
        default: false
        permissions:
        - /heal
        - /healother
        - essentials.heal
        - essentials.kit
        - essentials.kit.healer
        inheritance:
        - peasant
        info:
          prefix: '&3'
          build: true
          suffix: Healer
      knight:
        default: false
        permissions:
        - essentials.tpo
        - essentials.tpohere
        - essentials.tp
        - essentials.tphere
        - essentials.warp
        - essentials.setwarp
        - essentials.delwarp
        - essentials.item
        - essentials.give
        - essentials.spawnmob
        - essentials.kill
        - godmode.god.players
        - SpellsPlugin.commands.cast
        - SpellsPlugin.commands.spells
        - SpellsPlugin.spells.*
        - superheat.sh
        - groupmanager.manwhois
        - groupmanager.listgroups
        inheritance:
        - watchman
        info:
          prefix: '&1'
          build: true
          suffix: Knight
      miner:
        default: false
        permissions:
        - essentials.kit
        - essentials.kit.miner
        - flashlight.normal
        - iConomyChestShop.shop.sell
        - superheat.sh
        inheritance:
        - peasant
        info:
          prefix: '&2'
          build: true
          suffix: Miner
      Kid:
        default: true
        permissions:
        - essentials.motd
        inheritance:
        - jailed
        info:
          prefix: '&7'
          build: false
          suffix: Kid
      farmer:
        default: false
        permissions:
        - essentials.tree
        - essentials.bigtree
        - SpellsPlugin.commands.cast
        - SpellsPlugin.commands.spells
        - SpellsPlugin.spells.tree
        - SpellsPlugin.spells.familiar
        - essentials.kit
        - essentials.kit.farmer
        - Spells.cast.familiar
        - iConomyChestShop.shop.sell
        inheritance:
        - peasant
        info:
          prefix: '&a'
          build: true
          suffix: Farmer
      skywalker:
        default: false
        permissions:
        - '*'
        inheritance:
        - knight
        info:
          prefix: '&c'
          build: true
          suffix: King
      craftsman:
        default: false
        permissions:
        - essentials.kit
        - essentials.kit.craftsman
        inheritance:
        - peasant
        info:
          prefix: '&e'
          build: true
          suffix: Craftsman
      trader:
        default: false
        permissions:
        - bflight.bfly
        - iConomyChestShop.shop.create
        - essentials.kit
        - essentials.kit.trader
        inheritance:
        - peasant
        info:
          prefix: '&6'
          build: true
          suffix: Trader
      NotLoggedIn:
        default: false
        permissions:
        - essentials.motd
        inheritance: []
        info:
          prefix: ''
          build: false
          suffix: ''
      peasant:
        default: false
        permissions:
        - auction.allow
        - essentials.help
        - essentials.home
        - essentials.list
        - essentials.mail
        - essentials.mail.send
        - essentials.motd
        - essentials.msg
        - essentials.rules
        - essentials.sethome
        - essentials.signs.heal.use
        - essentials.spawn
        - iConomy.list
        - iConomy.payment
        - iConomy.rank
        - iConomyChestShop.shop.use
        - lwc.protect
        - monsterhunt.usercmd.hunt
        - monsterhunt.usercmd.huntscore
        - monsterhunt.usercmd.huntstatus
        inheritance:
        - kid
        info:
          prefix: '&e'
          build: true
          suffix: Peasant
    plugin:
      permissions:
        system: default
    Don't you think it's much more human readable?
    At least I got tons of requests for it. It was easier than it looked. Just got to dig up SnakeYAML documentation for some minutes... and incredibly I just had to change 3 lines in code for this.
     
  21. Offline

    Soul Reaper

    hmmm odd mine isn't doing that :/
    but i am getting the double save problem too, with only the essentialsgm plugin
     
  22. Offline

    AnjoCaido

    Well, GM seems pretty much rock solid now(am I wrong?).

    Probably you have more than one copy if you are having double save. My scheduler has 1 space on the pool only, so you need two schedulers running to get that... to get two schedulers you probably going to need two GroupManager.

    Make sure if you got latest FakePermissions.jar too... there was a build release that forced bukkit to load GroupManager more than one time.
     
  23. Offline

    Soul Reaper

    i found out why Essentials GM isn't the latest, its version c not d.
    edit: fake permissions is the same as essentials group bridge right?
     
  24. Offline

    sablednah

    Still getting the same issue. GM appears to have loaded - Suffix's and so on work - manulistp and manglistp show the correct permissions - just no commands are actually limited! (Except for groupmanager commands).


    Here's my data.yaml contents...

    Code:
    users:
      sablednah:
        permissions: []
        group: owner
      chayat:
        permissions: []
        group: admins
      LordSable:
        permissions: []
        group: user
      thomasias:
        permissions: []
        group: user
    
    groups:
      user:
        default: true
        permissions:
        - /ach
        - /listach
        - /stats
        - essentials.back
        - essentials.help
        - essentials.home
        - essentials.list
        - essentials.mail.send
        - essentials.nick
        - essentials.pay
        - essentials.protect.alerts
        - essentials.sell
        - essentials.sethome
        - essentials.signs.disposal.create
        - essentials.signs.protection.create
        - essentials.signs.protection.use
        - essentials.spawn
        - essentials.top
        - essentials.tpa
        - essentials.tpaccept
        - essentials.tpahere
        - essentials.tpdeny
        - essentials.worth
        inheritance:
        - default
        info:
          prefix: '&1'
          build: true
          suffix: ' - Minion!'
      default:
        default: false
        permissions:
        - essentials.afk
        - essentials.compass
        - essentials.depth
        - essentials.getpos
        - essentials.helpop
        - essentials.mai
        - essentials.me
        - essentials.motd
        - essentials.msg
        - essentials.ping
        - essentials.portal
        - essentials.protect
        - essentials.rules
        - essentials.signs.disposal.use
        - essentials.tpaccept
        - wormhole.list
        - wormhole.use.dialer
        - wormhole.use.sign
        inheritance: []
        info:
          prefix: 'Guest:'
          build: false
          suffix: ''
      owner:
        default: false
        permissions:
        - '*'
        - essentials.antioch
        inheritance:
        - admins
        info:
          prefix: '[Uber] '
          build: true
          suffix: '!'
      admins:
        default: false
        permissions:
        - essentials.bigtree
        - essentials.clearinventory
        - essentials.delwarp
        - essentials.essentials
        - essentials.god
        - essentials.heal
        - essentials.item
        - essentials.kickall
        - essentials.kill
        - essentials.plugin
        - essentials.protect.exemptplacement
        - essentials.protect.exemptusage
        - essentials.setspawn
        - essentials.setwarp
        - essentials.signs.*
        - essentials.spawnmob
        - essentials.time
        - essentials.tpohere
        - essentials.tree
        - essentials.world
        - wormhole.config
        - wormhole.remove.all
        inheritance:
        - moderator
        info:
          prefix: '[ADMIN]'
          build: true
          suffix: ''
      moderator:
        default: false
        permissions:
        - /achadmin
        - /statsadmin
        - essentials.balance
        - essentials.ban
        - essentials.banip
        - essentials.broadcast
        - essentials.chat.shout
        - essentials.chat.spy
        - essentials.eco
        - essentials.give
        - essentials.jail
        - essentials.jump
        - essentials.kick
        - essentials.kit
        - essentials.kit.*
        - essentials.mute
        - essentials.protect.admin
        - essentials.tp
        - essentials.tphere
        - essentials.tpo
        - essentials.tppos
        - essentials.tptoggle
        - essentials.unban
        - essentials.unbanip
        - essentials.warp
        - essentials.whois
        - wormhole.build
        - wormhole.remove.own
        inheritance:
        - user
        info:
          prefix: '[MOD] '
          build: true
          suffix: ''
    plugin:
      permissions:
        system: default
    
     
  25. Offline

    AnjoCaido

    yes.

    mmm. I already commited the changes to Essentials repo. If it was not built yet, sure is on next dev build.
     
  26. Offline

    aquacold

    ok so I am failing or there is something wrong. When I do the manuadd cmd to change the players group to the desired group but it never saves, it says it changed them but it never happens
     
  27. Offline

    Alienware777

    Btw I'm using CB#240
     
  28. Offline

    Drat333

    Hi, I installed groupmanager via essentials (essentialsgroupmanager and essentialsgroupmanagerbridge), and now almost NOTHING works on my server, even the non-permissions-dependant plugins. I have NO idea as to what's causing it.
    Permissions file as appears in EssentialsGroupManager directory, I'm not sure if its the correct format as it changed to this format on its own for some reason:
    Code:
    plugin:
      permissions: {system: default}
    groups:
      Default:
        default: true
        info: {prefix: '[Bitch]', suffix: '', build: true}
        inheritance: []
        permissions: [general.spawn, magiccarpet.mc, essentials.me, essentials.tpahere,
          essentials.tpa, essentials.tpaccept, essentials.warp, essentials.list, essentials.home,
          essentials.sethome, essentials.mail, essentials.mail.send, essentials.helpop,
          essentials.clearinventory, essentials.getpos, essentials.heal, essentials.help,
          essentials.afk, essentials.rules, essentials.ping, essentials.compass, essentials.depth,
          essentials.msg, disarm.disarm, disarm.gettnt, jail.usercmd.jailstatus]
      SubModerator:
        default: false
        info: {prefix: '[SubMod]', suffix: '', build: true}
        inheritance: [Default]
        permissions: [general.time, general.teleport, general.teleport.here, general.player-info,
          essentials.tptoggle, essentials.item, essentials.give, essentials.whois, essentials.spawn,
          essentials.setspawn, essentials.jump, essentials.top, essentials.ping, essentials.nuble,
          measuringtape.measure, measuringtape.tape, measuringtape.tp, multiverse.mvtp,
          multiverse.mvsetspawn, multiverse.mvspawn, multiverse.mvlist, godmode.god.self,
          wormhole.use.sign, wormhole.use.dialer, wormhole.list]
      Moderator:
        default: false
        info: {prefix: '[Mod]', suffix: '', build: true}
        inheritance: [SubModerator]
        permissions: [essentials.tptoggle, essentials.tpa, essentials.tpaccept, essentials.tpdeny,
          essentials.tp, essentials.tpo, essentials.tpahere, essentials.tphere, essentials.tpohere,
          essentials.tppos, essentials.tree, essentials.bigtree, essentials.spawnmob,
          essentials.kit.*, essentials.kit, essentials.kit.KITNAME, essentials.kick, essentials.kill,
          essentials.ban, essentials.unban, essentials.motd, essentials.setwarp, essentials.delwarp,
          essentials.nick, worldedit.*, dropchest.*, godmode.*, flashlight.normal, deathtpplus.deathtp,
          deathtpplus.streak, wormhole.build, wormhole.remove.own, wormhole.config]
      Admins:
        default: false
        info: {prefix: '[Admin]', suffix: '', build: true}
        inheritance: [Moderator]
        permissions: ['*']
    users:
      Drat333:
        group: Admin
        permissions: ['*']
      tehcloak:
        group: Moderator
        permissions: []
      l_lost_the_game:
        group: Moderator
        permissions: []
      pandemic419:
        group: Moderator
        permissions: []
      Eskalay:
        group: Moderator
        permissions: []
      xturminatur:
        group: Moderator
        permissions: []
      Wongstars:
        permissions: []
        group: SubModerator
    
    
    And this is a log dump of when I start up the server, there's some funky stuff about groupmanager in there, and NONE of my essentials plugins start. As a side note, I removed the essentials folder so that it could update properly, but the plugin never creates it again:
    Code:
    [COLOR=rgb(0, 0, 0)][SIZE=13px][FONT=Trebuchet MS]2011-02-28 17:57:46 [INFO] Starting Minecraft server on *:25565 [/FONT][/SIZE][/COLOR]
    [COLOR=rgb(0, 0, 0)][SIZE=13px][FONT=Trebuchet MS]2011-02-28 17:57:46 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-458-g557f3d2-b440jnks (MC: 1.3) 
    2011-02-28 17:57:46 [INFO] Preparing level "world" 
    2011-02-28 17:57:46 [INFO] Preparing start region 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.bukkit.darknesschaos.Voidmage.VoidMage(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of VoidMage to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.bukkit.pandemic.EmptyBucket.EmptyBucket(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of EmptyBucket to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.thevoxelbox.VoxelPort.VoxelPort(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of VoxelPort to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.thevoxelbox.flyRidgeFly.flyRidgeFly(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of flyRidgeFly to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.ridgedog.bukkit.VoxelMore.VoxelMore(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of VoxelMore to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor me.taylorkelly.flashlight.Flashlight(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of Flashlight to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.bukkit.yogoda.movecraft.MoveCraft(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of MoveCraft to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [INFO] Hint! It's probably someone called 'Yogoda' 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.bukkit.Queepo.Disarm.Disarm(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of Disarm to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.recanu.FenceStack.FenceStack(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of FenceStack to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [WARNING] Using the stupidly long constructor com.thevoxelbox.VoxelSniper.VoxelSniper(PluginLoader, Server, PluginDescriptionFile, File, File, ClassLoader) is no longer recommended. Go nag the plugin author of VoxelSniper to remove it! (Nothing is broken, we just like to keep code clean.) 
    2011-02-28 17:57:47 [INFO] SignLift version 0.6 is enabled :) 
    2011-02-28 17:57:47 [INFO] VoidMage version 2.0 is enabled! 
    2011-02-28 17:57:47 [INFO] Loading EmptyBucket 
    2011-02-28 17:57:47 [INFO] GroupManager - Backing up your data... 
    2011-02-28 17:57:47 [INFO] GroupManager - Backup done! 
    2011-02-28 17:57:47 [SEVERE] null 
    java.lang.IllegalArgumentException: There is no group Admin, as stated for player drat333 
    at org.anjocaido.groupmanager.dataholder.DataHolder.load(DataHolder.java:391) 
    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:140) 
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:426) 
    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: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-02-28 17:57:47 [SEVERE] Permissions file is in wrong format (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:140) 
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:426) 
    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: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-02-28 17:57:47 [INFO] Done (1647832604ns)! For help, type "help" or "?" [/FONT][/SIZE][/COLOR]
    
    If there's anything else I can give to help, I would be glad to give it. Thanks in advance if you can help!
     
  29. Offline

    AnjoCaido

    Just read the first line of the error... sometimes developers do it in a way errors can make sense.

    [sarcastic] I really wonder what
    There is no group Admin, as stated for player drat333
    means in there....[/sarcastic]

    Seriously now... you have to define, you use group names in plural or in singular(grammar).
    When you decide that, you will not make those mistakes again.
     
  30. Offline

    DCSiira

    Hello, i'm trying to use your plugin and i was wondering why the data.yml keeps defaulting to what you give us, no matter what i try. I've tried making the config in permissions then letting it auto transfer and nothing, i've tried editing the data.yml directly but it just defaults. i changed one letter in the suffix of one of the users names and it defaulted back to the orignal in both the backup and the data.yml. i cant use any of the commands you listed to change it because i cant make myself admin, any ideas?
     
  31. Offline

    Drat333

    Alright, I fixed the plurality of the group, but still nothing works. So, clearly there is something else wrong.
     
Thread Status:
Not open for further replies.

Share This Page