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

    Stephen92

    id remove inheritance on ur admin group, being a admin with a * entitles you to all commands available on the server.
     
  3. Offline

    AnjoCaido

    You need a chat plugin that uses prefixes. GroupManager just provide the data for other plugins. Just like permissions did.
     
  4. Offline

    Dodecha

    Am i missing something here? Nothing works on craftbukkit #431.

    It has copied the config from permissions, i am an admin, and admins have permission: * but i still cant use any commands, i get "You do not have access to that command."

    Right now i'm only using the essentials plugin pack, worldguard and worldedit
     
  5. Offline

    Volitle

    I'm still trying to get manuadd and manudel to work =/

    everything else works fine, like adding permissions, taking permissions adding new groups ect ect Just added someone to a new group doesn't
     
  6. Offline

    AnjoCaido

    That's not corrupted. It's how SnakeYAML saves the file. If I find a way to make it write in the same way we humans like, I'll make sure to do it.

    Example of another OK file:
    Code:
    [/FONT]users:
      anon:
        permissions: []
        group: Vip
      gmcouto:
        permissions: []
        group: Admin
      jj3089:
        permissions: []
        group: Moderator
      snupy321:
        permissions: []
        group: Builder
      anjocaido:
        permissions: []
        group: Admin
      tirsorex:
        permissions: []
        group: Moderator
      bioya:
        permissions: []
        group: Builder
      flaco_133:
        permissions: []
        group: Vip
      delacruz:
        permissions: []
        group: Builder
    groups:
      Default:
        default: true
        permissions: [essentials.motd, essentials.rules, essentials.list, essentials.helpop,
          essentials.help, essentials.spawn, lwc.blockinventory]
        inheritance: []
        info: {prefix: '', build: false, suffix: ''}
      NotRegistered:
        default: false
        permissions: [essentials.motd, essentials.rules, essentials.list, essentials.helpop,
          lwc.blockinventory]
        inheritance: []
        info: {prefix: '&0', build: false, suffix: ''}
      Builder:
        default: false
        permissions: [essentials.getpos, essentials.motd, essentials.rules, essentials.afk,
          essentials.me, essentials.list, essentials.mail, essentials.kit, essentials.help,
          essentials.home, essentials.sethome, essentials.spawn, essentials.warp, lwc.protect]
        inheritance: []
        info: {prefix: '&e', build: true, suffix: ''}
      Vip:
        default: false
        permissions: [essentials.msg, essentials.kick, essentials.item, essentials.heal]
        inheritance: [Builder]
        info: {prefix: '&a', build: true, suffix: ''}
      Moderator:
        default: false
        permissions: 
          [essentials.depth,
          essentials.compass,
          essentials.back,
          essentials.jump,
          essentials.top,
          ssentials.mail.send,
          essentials.whois,
          essentials.kill,
          essentials.give,
          essentials.time,
          essentials.tptoggle,
          essentials.tpa,
          essentials.tpaccept,
          essentials.tpdeny,
          essentials.tp,
          essentials.tpahere,
          essentials.tphere,
          essentials.banip,
          essentials.setwarp,
          essentials.clearinventory,
          godmode.god.self,
          lwc.mod]
        inheritance: [Vip]
        info: {prefix: '&b', build: true, suffix: ''}
      NotLoggedIn:
        default: false
        permissions: [essentials.motd, essentials.rules, essentials.list, essentials.helpop,
          lwc.blockinventory]
        inheritance: []
        info: {prefix: '&0', build: false, suffix: ''}
      Admin:
        default: false
        permissions: ['*']
        inheritance: [Moderator]
        info: {prefix: '&c', build: true, suffix: '&6'}
    plugin:
      permissions: {system: default}[FONT=Georgia]
    [/CODE][/FONT]
     
  7. Offline

    Swoosh Bear

    I have a problem with my data YML file.

    How do I get my notepad to look like your guys' setup? When I open it in notepad, it has all of the text jumbled together in an incoherent fashion but when I pasted all of the text onto here, it is in the correct format.

    Any help?

    Code:
    users:
      swoosh_bear:
        permissions: [vanish.vanish, vanish.vanish.list, mywarp.*, godmode.*, worldedit.*]
        group: Default
      hologuardian:
        permissions: [essentials.sethome, essentials.home]
        group: Default
      nacromunger:
        permissions: [essentials.ban, essentials.unban, worldedit.clipboard.cut, worldedit.clipboard.paste,
          worldedit.clipboard.copy, worldedit.region.walls, worldedit.wand, worldedit.superpickaxe.pickaxe,
          worldedit.region.set, worldedit.history.undo, worldedit.history.redo, worldedit.clipboard.clear,
          worldedit.selection.hpos, worldedit.selection.hpos, worldedit.region.overlay]
        group: Moderator
      pennstate:
        permissions: []
        group: Moderator
      mindless_prey:
        permissions: [essentials.sethome, essentials.home]
        group: Default
    groups:
      Default:
        default: true
        permissions: [essentials.motd, essentials.rules, essentials.list, essentials.afk,
          mywarp.warp.basic.warp, mywarp.warp.basic.list, lwc.protect, DeathChest.use,
          DeathChest.freeChest, DeathChest.freeSign]
        inheritance: []
        info: {prefix: '', build: true, suffix: ''}
      Moderator:
        default: false
        permissions: [essentials.kick, essentials.tp, essentials.tphere, essenitals.mail,
          essentials.mail.send, essentials.motd, essentials.rules, essentials.home, essentials.sethome,
          essentials.give, essentials.item, essentials.broadcast, essentials.tell, lwc.mod]
        inheritance: [Default]
        info: {prefix: '&b', build: true, suffix: ''}
      Admin:
        default: false
        permissions: [essentials.ban, essentials.unban, essentials.give, essentials.top,
          essentials.home, essentials.sethome, essentials.list, essentials.rules, essentials.motd,
          essentials.tell, lwc.admin]
        inheritance: [Moderator]
        info: {prefix: '&3', build: true, suffix: ''}
    plugin:
      permissions: {system: default}
    
     
  8. Offline

    AnjoCaido

    They are working here with CB #432 as they always did.
    They are not only working, but every plugin sees the changes instantly.
     
  9. Offline

    Shinfo

    Can anyone tell my why, whenever I put this in my data.yml
    Code:
    users:
        shinfo:
            group: Admin
            permissions:
        penguinmarch:
            group: Admin
            permissions:
        crazygtrider:
            group: Mod
            permissions:
        TheMightyHarlem:
            group: Mod
            permissions:
        ValleyArts:
            group: Mod
            permissions:
        frozencanadian:
            group: VIP
            permissions:
    groups:
      Admins:
        default: false
        permissions: ['*']
        inheritance: [Mod]
        info: {prefix: '&d', build: true, suffix: ''}
      Mod:
        default: false
        permissions: [lwc.mod, godmode.*, vanish.*, iConomy.access, iConomy.rank, iConomy.list, iConomy.withdraw, towny.admin, cleaner.*, wormhole.*]
        inheritance: [VIP]
        info: {prefix: '&3', build: true, suffix: ''}
      VIP:
        default: false
        permissions: [essentials.warp, essentials.tpa, tombstone.*]
        inheritance: [Donator]
        info: {prefix: '&4', build: true, suffix: ''}
      Donator:
        default: false
        permissions: [magiccarpet.mc]
        inheritance: [Miner]
        info: {prefix: '&6', build: True, suffix: ''}
      Miner:
        default: true
        permissions: [lwc.protect, essentials.home, essentials.sethome, essentials.kit, essentials.kit.tools, essentials.help, essentials.spawn, iConomy.payment, wormhole.use, wormhole.use.*, essentials.tpaccept, essentials.tpdeny]
        inheritance: []
        info: {prefix: '', build: true, suffix: ''}
    plugin:
      permissions: {system: default}
    Every time I reboot my server, it just resets itself to the default?!

    Code:
    users:
      darkgrave:
        permissions: []
        group: Admins
      sk89q:
        permissions: [general.time]
        group: Default
    groups:
      Default:
        default: true
        permissions: [general.spawn]
        inheritance: []
        info: {prefix: '', build: true, suffix: ''}
      Admins:
        default: false
        permissions: ['*']
        inheritance: [Moderator]
        info: {prefix: '', build: true, suffix: ''}
      Moderator:
        default: false
        permissions: [general.time, general.teleport, general.teleport.here, general.player-info]
        inheritance: [Default]
        info: {prefix: '', build: true, suffix: ''}
    plugin:
      permissions: {system: default}
    
     
  10. Offline

    AnjoCaido

    Are you doing this with your server running?

    If you change your file with the server running, toggle off the auto-saving... edit your file... than use /manload to load it... then you can toggle saving back.


    If you don't toggle auto-save, you risk to lose your changes before loading it(because auto-saving might occur, and it will save old data)
    If you don't load your data, sometime it will save the old data(and it saves when the server is shutdown).
     
  11. Offline

    Shinfo

    I ended up turning off write permission for the owner group (FTP) for the file and it's staying the same now.

    I don't understand why it's still letting default users use god, kick, ban, jump, etc.
     
  12. Offline

    Volitle

    Alright well mind telling me what im doing wrong then? there isnt one error in my console but yet it doesnt seem to be doing it.
     
  13. Offline

    AnjoCaido

    Which version CB are you using. There was a CB versions which made everyone OP.
     
  14. Offline

    deadc4t

  15. Offline

    mrgreaper

    wait so
    vip:
    default: false
    permissions: [help, home, essentials.list, achievements, listachievements, essentials.motd,
    buy, sell, balance, pay, undo, prices, me, msg, essentials.kit.armour, essentials.kit.arrows,
    essentials.kit.freebie, playerlist, essentials.mail, compass, tell, m, who,
    npc.manager.*, npc.owner.*, npc.create]
    inheritance: [default]
    info: {prefix: '&2 VIP ', build: true, suffix: ''}

    is the correct usuage not
    permissions:
    - 'permision1'
    - 'permision2'

    ??????
    ive just wasted an hour of my life lol
     
  16. Offline

    AnjoCaido

    Well... manuadd and manudel should at least give you some feedback of whats happening.
    Do you mind telling me what's happening?

    You could at least use console to do:
    manucheckp <youruser> groupmanager.manuadd

    And verify if the permission is ok.


    If everything looks ok, paste your file, so I can take look at it.
    --- merged: Feb 23, 2011 9:48 PM ---
    It reads both.
    Anything that passes on a YAML parser, and keeps data structure, should be ok.


    You can test it... format it in that way, or in the GM way... if you parse and conver to json... the output will be the same:
    http://yaml-online-parser.appspot.com/

    Any file that's not valid should return a error when you try to convert on that site. There is some special cases which a file is not valid and passes on the convertion(like adding a permission with an empty string: '')


    Unfortunately it saves only this way(until I find how to save the way we like)
     
  17. Offline

    Volitle

    Code:
    users:
      derekcool1:
        permissions: []
        group: Resident
      mattfoy:
        permissions: []
        group: Moderator
      rmotx:
        permissions: []
        group: Resident
      aviriorix:
        permissions: []
        group: Builder
      yeseye:
        permissions: []
        group: CEO
      ironicdream:
        permissions: []
        group: Moderator
      andycool1337:
        permissions: []
        group: Resident
      volitile:
        permissions: []
        group: Owner
      blad3walker:
        permissions: []
        group: Freelancer
      4rcher2:
        permissions: []
        group: Resident
      thefrazzledkid:
        permissions: []
        group: Resident
      lileas:
        permissions: []
        group: Clerk
      zack_looney:
        permissions: []
        group: Moderator
      zutara101:
        permissions: []
        group: Builder
      sparten4ever92:
        permissions: []
        group: Resident
      nakashimakin:
        permissions: []
        group: Resident
      farrah:
        permissions: [essentials.kit.*]
        group: Donor
      iommuzzy:
        permissions: []
        group: Resident
      nakashimakun:
        permissions: [essentials.tp]
        group: Resident
      hermitsama:
        permissions: []
        group: Resident
      chinothebuilder:
        permissions: []
        group: Resident
      deathstrike2:
        permissions: []
        group: Resident
      ossiter:
        permissions: []
        group: Resident
      mgnooby:
        permissions: []
        group: Resident
      scratton:
        permissions: []
        group: Resident
      jeheace:
        permissions: []
        group: Resident
      cdrewskymt3:
        permissions: []
        group: Resident
      illestkid:
        permissions: []
        group: Resident
      accsourt:
        permissions: []
        group: Resident
      grizzly34:
        permissions: []
        group: Resident
      illwrath:
        permissions: []
        group: Resident
      whirlsquirrel:
        permissions: []
        group: Resident
      saeldurshadow:
        permissions: []
        group: Technician
      necruser:
        permissions: []
        group: Builder
      tehswordfish:
        permissions: []
        group: Builder
      sabboy:
        permissions: []
        group: Donor
    groups:
      Default:
        default: true
        permissions: [antigrief.prevent.block.damage, antigrief.prevent.block.place, antigrief.prevent.block.interact,
          antigrief.prevent.block.ignite]
        inheritance: []
        info: {prefix: 'Guest ', build: false, suffix: ''}
      Owner:
        default: false
        permissions: ['*']
        inheritance: []
        info: {prefix: '&4Owner ', build: true, suffix: ''}
      Resident:
        default: false
        permissions: [essentials.spawn, essentials.list, essentials.home, essentials.sethome,
          essentials.compass, essentials.ping, essentials.help, essentials.me, essentials.whois,
          essentials.mail, essentials.mail.send, essentials.msg, essentials.rules, mcmmo.chat.partychat,
          mcmmo.commands.ptp, mcmmo.commands.party, mcmmo.commands.myspawn, mcmmo.skills.*,
          lwc.protect]
        inheritance: []
        info: {prefix: 'Resident ', build: true, suffix: ''}
      Freelancer:
        default: false
        permissions: []
        inheritance: [Builder]
        info: {prefix: 'Freelancer ', build: true, suffix: ''}
      SnrMod:
        default: false
        permissions: [essentials.heal, essentials.banip, essentials.kill, essentials.god,
          essentials.broadcast]
        inheritance: [Moderator]
        info: {prefix: '&2Snr. Mod ', build: true, suffix: ''}
      CEO:
        default: false
        permissions: []
        inheritance: [Clerk]
        info: {prefix: 'CEO ', build: true, suffix: ''}
      Technician:
        default: false
        permissions: []
        inheritance: [CEO]
        info: {prefix: Technician, build: true, suffix: ''}
      Builder:
        default: false
        permissions: []
        inheritance: [Technician]
        info: {prefix: 'Builder ', build: true, suffix: ''}
      Clerk:
        default: false
        permissions: []
        inheritance: [Resident]
        info: {prefix: 'Clerk ', build: true, suffix: ''}
      Moderator:
        default: false
        permissions: [essentials.tp, essentials.item, essentials.give, essentials.ban,
          essentials.clearinventory, essentials.kick, groupmanager.manuadd, essentials.tphere]
        inheritance: [Donor]
        info: {prefix: '&2Mod ', build: true, suffix: ''}
      Donor:
        default: false
        permissions: [essentials.warp, essentials.setwarp]
        inheritance: [Freelancer]
        info: {prefix: '&6Donor ', build: true, suffix: ''}
    plugin:
      permissions: {system: default}
    
     
  18. Offline

    mrgreaper

    use notepad++ not notepad
    make sure never to use tabs too :)
    --- merged: Feb 23, 2011 9:52 PM ---
    cool thnx for the reply
     
  19. Offline

    AnjoCaido

    Open in Wordpad, or use Notepad++(which I recommend you so much to editing these files).

    There are some kind of linebreaks wich common notepad doesn't understand, and it shows th whole file as pretty much one line.
     
  20. Offline

    bastion

    I think I found a glitch, if you have essentials.kit.* in a group permission with out the essentials.kit permission you don't have access to the command, same with worldedit.superpickaxe.* must have worldedit.superpickaxe
     
  21. Offline

    Shinfo

    432
     
  22. Offline

    AnjoCaido

    It's not a glitch.

    It always worked that way, as far as I know.
     
  23. Offline

    KimKandor

    you must have essentials.kit and essentials.kitname or essentials.kit.* , it's a feature to restrict specific kits.
     
  24. Offline

    AnjoCaido

    Then I'm not sure whats happening. Here it works fine.

    If none of your users are OP, paste me your file.
     
  25. Offline

    Volitle

    Find anything wrong with my config?
     
  26. Offline

    AnjoCaido

    Your name ingame is Volitile?(instead of Volitle)
    I entered ingame with that name and it worked. Your file is working.
     
  27. Offline

    Volitle

    yes in game is different, hmm well i dont know what is wrong then


    -.-' im an idiot... you've updated since i started posting lol
     
  28. Offline

    AnjoCaido

    Doesn't commands like /manuadd give any feedback?

    Which version of GM are you using? Did you get latest FakePermissions(packed together)?
     
  29. Offline

    Shinfo

    Sorry, what do you mean paste you my file? My data.yml is

    Code:
    users:
        shinfo:
            group: Admin
            permissions:
        penguinmarch:
            group: Admin
            permissions:
        crazygtrider:
            group: Mod
            permissions:
        TheMightyHarlem:
            group: Mod
            permissions:
        ValleyArts:
            group: Mod
            permissions:
        frozencanadian:
            group: VIP
            permissions:
    groups:
      Admins:
        default: false
        permissions: ['*']
        inheritance: [Mod]
        info: {prefix: '&d', build: true, suffix: ''}
      Mod:
        default: false
        permissions: [lwc.mod, godmode.*, vanish.*, iConomy.access, iConomy.rank, iConomy.list, iConomy.withdraw, towny.admin, cleaner.*, wormhole.*]
        inheritance: [VIP]
        info: {prefix: '&3', build: true, suffix: ''}
      VIP:
        default: false
        permissions: [essentials.warp, essentials.tpa, tombstone.*]
        inheritance: [Donator]
        info: {prefix: '&4', build: true, suffix: ''}
      Donator:
        default: false
        permissions: [magiccarpet.mc]
        inheritance: [Miner]
        info: {prefix: '&6', build: True, suffix: ''}
      Default:
        default: true
        permissions: [lwc.protect, essentials.home, essentials.sethome, essentials.kit, essentials.kit.tools, essentials.help, essentials.spawn, iConomy.payment, wormhole.use, wormhole.use.*, essentials.tpaccept, essentials.tpdeny]
        inheritance: []
        info: {prefix: '', build: true, suffix: ''}
    plugin:
      permissions: {system: default}
     
  30. Offline

    Volitle

    its sorted now, didnt realise you updated since i started posted. Thank you for your time :)
     
  31. Offline

    Deadlystrike

    shin i see a error in your file! your donator inhertiance is Miner there is no miner rank to inherit from
     
Thread Status:
Not open for further replies.

Share This Page