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

    DannyCare

    How come every time I make a change on the users.yml file, then /reloadall in game, the users.yml file restores back to it's default state.

    I'm using essentials. I just want to make myself an admin and on Permissions I could directly edit the config.yml file. Any help? I also can't find a command list anywhere :( Thanks
     
  3. Offline

    AnjoCaido

    Make yourself admin in Config.yml? You couldn't find the command list?

    Are you aware that you are in GroupManager thread? Are you aware there is a big main post which contains 90% of what you might need?
     
  4. Offline

    MationMac

    Works fine, except that it Denies DC_Smoking access to the /sethome command. I use the plugins from Essentials (all except Its group system) and everything else seems to work fine. I use this setup:


    users.yml
    Code:
    users:
      MationMac:
        permissions:
        - '*'
        group: Admin
      DC_Smoking:
        permissions:
            - 'general.spawn.set'
            - 'general.time'
            - 'general.help'
            - 'general.afk'
            - 'kit.tools'
            - 'kit.paintings'
            - 'kit.kit'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.access'
            - 'iConomy.rank'
            - 'essentials.signs.heal.use'
            - 'essentials.back'
            - 'essentials.msg'
            - 'essentials.afk'
            - 'essentials.rules'
            - 'essentials.motd'
            - 'essentials.me'
            - 'essentials.list'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'essentials.ping'
            - 'essentials.kit.*'
            - 'essentials.kit.'
            - 'essentials.help'
            - 'essentials.sell'
            - 'essentials.pay'
            - 'essentials.signs.trade.use'
            - 'essentials.signs.trade.create'
            - 'essentials.sethome'
            - 'essentials.home'
            - 'essentials.warp'
        group: Member
      NickTack:
        permissions:
        - general.spawn.set
        - general.time
        - general.help
        - general.afk
        - kit.tools
        - kit.paintings
        - kit.kit
        - iConomy.list
        - iConomy.payment
        - iConomy.access
        - iConomy.rank
        group: Member
    
    groups.yml
    Code:
    groups:
      Default:
        default: true
        permissions:
        - essentials.afk
        - essentials.help
        - essentials.helpop
        - essentials.kit.
        - essentials.list
        - essentials.mail
        - essentials.motd
        - essentials.pay
        - essentials.ping
        - essentials.rules
        - essentials.sell
        - essentials.signs.buy.create
        - essentials.signs.buy.use
        - essentials.signs.heal.use
        - essentials.signs.sell.create
        - essentials.signs.sell.use
        - essentials.whois
        - essentials.worth
        - general.spawn
        - iConomy.list
        - iConomy.payment
        - iConomy.rank
        inheritance: []
        info:
          prefix: ''
          build: true
          suffix: ''
      Member:
        default: false
        permissions:
            - 'general.spawn.set'
            - 'general.time'
            - 'general.help'
            - 'general.afk'
            - 'kit.tools'
            - 'kit.paintings'
            - 'kit.kit'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.access'
            - 'iConomy.rank'
            - 'essentials.signs.heal.use'
            - 'essentials.back'
            - 'essentials.msg'
            - 'essentials.afk'
            - 'essentials.rules'
            - 'essentials.motd'
            - 'essentials.me'
            - 'essentials.list'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'essentials.ping'
            - 'essentials.kit.*'
            - 'essentials.kit.'
            - 'essentials.help'
            - 'essentials.sell'
            - 'essentials.pay'
            - 'essentials.signs.trade.use'
            - 'essentials.signs.trade.create'
            - 'essentials.sethome'
            - 'essentials.home'
            - 'essentials.warp'
        inheritance:
        - default
        info:
          prefix: '&b'
          build: true
          suffix: '&b'
      Moderator:
        default: false
        permissions:
        - general.spawn.set
        - general.afk
        - general.time
        - general.help
        - kit.kit
        - kit.*
        - bb.admin.*
        - spawnmob.spawnmob.friendly'
        - spawnmob.spawnmob.neutral'
        - iConomy.list
        - iConomy.payment
        - iConomy.access
        - iConomy.rank
        - essentials.signs.heal.use
        - essentials.back
        - essentials.msg
        - essentials.afk
        - essentials.rules
        - essentials.motd
        - essentials.me
        - essentials.list
        - essentials.mail.send
        - essentials.helpop
        - essentials.whois
        - essentials.nick
        - essentials.ping
        - essentials.kit.*
        - essentials.kit.
        - essentials.help
        - essentials.worth
        - essentials.sell
        - essentials.pay
        - essentials.signs.sell.create
        - essentials.signs.sell.use
        - essentials.signs.trade.create
        - essentials.signs.trade.use
        - essentials.signs.buy.create
        - essentials.signs.buy.use
        inheritance: []
        info:
          prefix: '&a'
          build: true
          suffix: '&a'
      Admin:
        default: false
        permissions:
        - '*'
        inheritance: []
        info:
          prefix: '&4'
          build: true
          suffix: '&4'
    
    And this is the file i used in Permissions, wich i now use to copy, paste and manage my commands:
    Code:
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:"
    #   field seperated by commas.
    #
    #   Example: inheritance: Default,Admins,
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'general.spawn'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'general.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    ##
    groups:
        Default:
            default: true
            info:
                prefix:
                suffix:
                build: true
            inheritance:
            permissions:
            - 'general.spawn'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.rank'
            - 'essentials.signs.heal.use'
            - 'essentials.afk'
            - 'essentials.rules'
            - 'essentials.motd'
            - 'essentials.list'
            - 'essentials.mail'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'essentials.ping'
            - 'essentials.kit.'
            - 'essentials.help'
            - 'essentials.worth'
            - 'essentials.sell'
            - 'essentials.pay'
            - 'essentials.sethome'
            - 'essentials.home'
        Member:
            default: false
            info:
                prefix: '&b'
                suffix: '&b'
                build: true
            inheritance:
                - Default
            permissions:
            - 'general.spawn.set'
            - 'general.time'
            - 'general.help'
            - 'general.afk'
            - 'kit.tools'
            - 'kit.paintings'
            - 'kit.kit'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.access'
            - 'iConomy.rank'
            - 'essentials.signs.heal.use'
            - 'essentials.back'
            - 'essentials.msg'
            - 'essentials.afk'
            - 'essentials.rules'
            - 'essentials.motd'
            - 'essentials.me'
            - 'essentials.list'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'essentials.ping'
            - 'essentials.kit.*'
            - 'essentials.kit.'
            - 'essentials.help'
            - 'essentials.sell'
            - 'essentials.pay'
            - 'essentials.signs.trade.use'
            - 'essentials.signs.trade.create'
            - 'essentials.sethome'
            - 'essentials.home'
            - 'essentials.warp'
        Moderator:
            default: false
            info:
                prefix: '&a'
                suffix: '&a'
                build: true
            inheritance:
                - Default, Member
            permissions:
            - 'general.spawn.set'
            - 'general.afk'
            - 'general.time'
            - 'general.help'
            - 'kit.kit'
            - 'kit.*'
            - 'bb.admin.*'
            - spawnmob.spawnmob.friendly'
            - spawnmob.spawnmob.neutral'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.access'
            - 'iConomy.rank'
            - 'essentials.signs.heal.use'
            - 'essentials.back'
            - 'essentials.msg'
            - 'essentials.afk'
            - 'essentials.rules'
            - 'essentials.motd'
            - 'essentials.me'
            - 'essentials.list'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'essentials.nick'
            - 'essentials.ping'
            - 'essentials.kit.*'
            - 'essentials.kit.'
            - 'essentials.help'
            - 'essentials.worth'
            - 'essentials.sell'
            - 'essentials.pay'
            - 'essentials.signs.trade.create'
            - 'essentials.signs.trade.use'
            - 'essentials.sethome'
            - 'essentials.home'
        Admin:
            default: false
            info:
                prefix: '&4'
                suffix: '&4'
                build: true
            inheritance:
                - Default, Moderator, Member
            permissions:
                - '*'
    
    ##
    # DarkGrave has control over all general commands.
    # sk89q can use /spawn & /setspawn
    ##
    users:
        MationMac:
            group: Admin
            permissions:
            - '*'
        DC_Smoking:
            group: Member
            permissions:
            - 'general.spawn.set'
            - 'general.time'
            - 'general.help'
            - 'general.afk'
            - 'kit.tools'
            - 'kit.paintings'
            - 'kit.kit'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.access'
            - 'iConomy.rank'
            - 'general.spawn.set'
            - 'general.time'
            - 'general.help'
            - 'general.afk'
            - 'kit.tools'
            - 'kit.paintings'
            - 'kit.kit'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.access'
            - 'iConomy.rank'
            - 'essentials.signs.heal.use'
            - 'essentials.back'
            - 'essentials.msg'
            - 'essentials.afk'
            - 'essentials.rules'
            - 'essentials.motd'
            - 'essentials.me'
            - 'essentials.list'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'essentials.ping'
            - 'essentials.kit.*'
            - 'essentials.kit.'
            - 'essentials.help'
            - 'essentials.sell'
            - 'essentials.pay'
            - 'essentials.signs.trade.use'
            - 'essentials.signs.trade.create'
            - 'essentials.sethome'
            - 'essentials.home'
        NickTack:
            group: Member
            permissions:
            - 'general.spawn.set'
            - 'general.time'
            - 'general.help'
            - 'general.afk'
            - 'kit.tools'
            - 'kit.paintings'
            - 'kit.kit'
            - 'iConomy.list'
            - 'iConomy.payment'
            - 'iConomy.access'
            - 'iConomy.rank'
    What am i doing wrong? Why won't it work on him?
     
  5. Offline

    PipeHead

    I must again point out that there is no command to add a brand new user. I brought this up before and was told /manuadd <player> <group> would do it. It doesn't.

    I just updated to the lastest version of GM and it still doesn't add a new player.

    When I issue /manuadd TEST_player Mods I get a "Player not found!" error.

    Any chance this command will be included in the new version or if there is an as yet undocumented command to add a new users, could someone share that?
     
  6. Offline

    ultimak

    If the player you are trying to add isnt in the game, then you have to use /mantogglevalidate to turn off the online player validation. With it off you can then use /manuadd <player> <group> to add a new player, regardless of if they are in game or not.
     
  7. Offline

    AnjoCaido

    It does add a user.
    If the player validation is active, the user must be online. This is useful to not need to type the full user name.

    But you always can deactivate user validation, and everything you want.
     
  8. Offline

    PipeHead

    so the player must be on the server FIRST and while they are on, I can then do /manuadd <player> <group>

    Sorry, but that is 1. not intuiative and 2. no where in the directions.
     
  9. Offline

    AnjoCaido

    Again: The player is not needed to be on the server.

    But as a default there is player name matching activated, which requires the player to be online to be done. If you don't know what is player name matching, when you find it out you'll understand why it is there... and possibly think it is magic.
    Again: this option can be completely deactivated by doing /mantogglevalidate
     
  10. Offline

    Spastic_Lime

    Please help me, i am having a problem configuring it. first of all it is in 1 straight line, the whole file is one straight line and when i try and edit the file it doesn't work properly because all the spacing is off. If there is any way i can change that please tell me. i'm kinda new at this.
     
  11. Offline

    Jotschie

    I'm having a problem with setting prefixes to my players.

    I am using a basic player group without a prefix to the group itself. I planned on giving individual prefixes to players in that group, but if I am using the ingame command /manuaddv it won't work. There is no prefix at all, after trying it multiple times with saving and reloading the plugin.
    The weird thing is if I look in the users file, the actual variable for the prefix that I typed in is listed for that player, but without standing in between the two ('') stripes. It also doesn't work if I try to add them manually...

    The prefixes only work for groups, where I manually added them in the config file.
     
  12. Offline

    beecub

    Setting build to false has no effect?
    Is this a kown problem? Any solutions?
     
  13. Offline

    Kane

  14. Offline

    beecub

  15. Offline

    OrtwinS

    You need a plugin like AntiBuild or AntiGrief for that (I use AG).
    Permissions 2.5 has it build in AntiBuild, maybe GM could include (the more complete) AntiGrief?
     
  16. Offline

    PeterPAwN

    im happy. :)
     
  17. Offline

    PipeHead

    Thank you.
     
  18. Offline

    AnjoCaido

    Open in WordPad or Notepad++
     
  19. Offline

    sibbo7

    Anyone? Anjo tried to help me via PM.. but i don't really get it.. could someone edit the File so its right? Thanks in Advance
    http://forums.bukkit.org/threads/ad...s-replacement-440-514.4723/page-22#post-98585
     
  20. Offline

    MationMac

    Can noone help me? D:
     
  21. Offline

    chatfriend2001

    Hi,

    I'm using cb 493 with essentials 2.0.263 and Groupmanager 1.0 pre-alpha 3 and Fake Permissions 2.5, of course the 2 jars from the essentials-package.

    it seems that i can't set a prefix or suffix for groups. Everytime I write a text in mc the server gets a message like this:

    This applies also on other players in the default-group (it's not really the default group, it's just the name).

    This is my groups.yml:

    Show Spoiler

    groups:
    Default:
    default: false
    permissions:
    - essentials.afk
    - essentials.help
    - essentials.home
    - essentials.list
    - essentials.mail.send
    - essentials.me
    - essentials.motd
    - essentials.msg
    - essentials.ping
    - essentials.portal
    - lwc.protect
    - multiverse.tp
    inheritance: []
    info:
    prefix: ''
    build: true
    suffix: ''
    Guests:
    default: true
    permissions:
    - lwc.blockinventory
    - essentials.afk
    - essentials.motd
    - essentials.me
    - essentials.mail
    - essentials.ping
    inheritance: []
    info:
    prefix: (
    build: false
    suffix: )
    Admins:
    default: false
    permissions:
    - '*'
    inheritance: []
    info:
    prefix: ''
    build: true
    suffix: ''
    Moderator:
    default: false
    permissions:
    - bar.foo
    inheritance:
    - default
    info:
    prefix: ''
    build: true
    suffix: ''


    And users.yml (censored the other names, i'm paranoid :D):
    Show Spoiler

    users:
    B######d:
    permissions: []
    group: Admins
    M######i:
    permissions: []
    group: Default
    G######i:
    permissions: []
    group: Default
    C######j:
    permissions: []
    group: Default
    F######r:
    permissions: []
    group: Default
    B######k:
    permissions: []
    group: Default
    G######f:
    permissions: []
    group: Default
    x######2:
    permissions: []
    group: Default
    s######n:
    permissions: []
    group: Default
    chatfriend2001:
    permissions: []
    group: Admins
    F######e:
    permissions: []
    group: Default
     
  22. Offline

    MationMac

    Do you use like this?
    Code:
    prefix: '&4'
     
  23. Offline

    AnjoCaido

    Scratch the last thing I said. I found a way to add user multigroup support, without screwing up the rest.
    Every user will have a main group, but optionally he can have any group he wants in subGroupList, which will be counted only for inGroup(if the user is in the group) checks and Permissions(permission node list) checks.
    Any group in subGroup list will have it's info node ignored(it includes prefix, suffix, build and other variables).

    Sounds good to you?

    I already have a very small build to post here, so you can test.
     
  24. Offline

    Olat

    So if a player has a main Group. Which could be the Faction,
    then the SubGroups can be the Profession and Weapon Skill. If i set up permissions for the subgroup and the user is in that subgroup. he has access to all those permissions as well right? If so this is perfect!

    I havent even installed the mcMMO with the weaponskills and professions yet due to the lack of multi group support. Anjo if this works i got a decent donation coming your way![MERGETIME="1299600778"][/MERGETIME]
    @AnjoCaido

    I was talking to Emen last night in IRC before you logged in and was asking why no one was done any USER based input for groups? Like If a moderator isnt online then no one can get added to a permissions group. Which i think is a horrible idea. Its like forcing you to manually do it. He said it wouldnt be too difficult to add a string that was parsed and then add the user to that group based on that string. So like When a new player joins, he can type in What Faction (Main Group) then pick 2 sub classes, 1 profession and 1 weapon skill. This allows them to get acces to the abilities they need to play and the Group Spawn )IE my graveyard system) with out a moderator online.
    [MERGETIME="1299600966"][/MERGETIME]
    an Example would be something like
    /joingrp Orsana
    /joinsubgrp Swordsman
    /joinsubgrp Herbalist

    Of if there was a way to do a menu system where they just pick: 1. Orsana 2. Raghnall 3. Mercator
    then it joins that main group based on the user input?

    I dunno what menu systems Java has available or the string parsing that is done. But it would stream line the system and make permissions 100% easier to manage based on the player and not a moderator. Now if you had access to ONLY change from Default for every player and then to change a Main Group or Subgroup AFTER that would be Moderator or Admin only. so if a player wants to switch Factions or Skill Sets he cant unless authorized.
     
  25. Offline

    KimKandor

    While it sounds complicated I love this idea, what a great feature for those who even want a bit more fine grained permission node setup. You could set some Moderators to only handle server maintanance, others could be in subgroup "permissions" with nodes for groupmanager commands ...and so on
     
  26. Offline

    treepunchah

    tried group manager with fake permissions, but can't make it work.
    I'm getting the same error I was getting with permissions:
    12:08:59 [SEVERE] Could not load plugins/GroupManager.jar in plugins: null
    org.bukkit.plugin.InvalidPluginException
    Caused by: java.lang.UnsupportedClassVersionError: Bad version number in .class file

    have updated to java for mac OS X 10.5 (update 4)
    with no improvement.

    Here is pastebin to my terminal output if anyone can help
    http://pastebin.com/TCvx1JeM
     
  27. Offline

    IronFerret

    i'm having problems getting permission to run my own sever, working with multiworld and groupmanager. It says i don't have permission to to create a new world or to add people to groups

    Code:
    groups:
        Guest:
            default: true
            info:
                prefix: '&2'
                suffix: '&5'
                build: false
            inheritance:
            permissions:
                - 'general.spawn'
                - 'essentials.depth'
                - 'essentials.getpos'
                - 'essentials.compass'
                - 'essentials.mail.send'
                - 'essentials.nick'
                - 'essentials.eco'
                - 'essentials.worth'
                - 'essentials.sell'
                - 'essentials.help'
                - 'essentials.tpa'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'worldedit.chunckinfo'
                - 'worldedit.listchuncks'
                - 'worldedit.extinguish'
                - 'general.spawn'
                - 'essentials.msg'
                - 'essentials.afk'
                - 'essentials.rules'
                - 'essentials.motd'
                - 'essentials.me'
                - 'essentials.list'
                - 'essentials.mail'
                - 'essentials.helpop'
                - 'essentials.ping'
                - 'essentials.spawn'
                - 'essentials.help'
        Member:
            default: false
            info:
                prefix: '&1'
                suffix: '&e'
                build: true
            inheritance:
                - Guest
            permissions:
                - 'essentials.home'
                - 'essentials.kit.*'
                - 'essentials.sethome'
                - 'essentials.spawn'
                - 'essentials.warp'
                - 'mobRider.*'
        Trusted Member:
            default: false
            info:
                prefix: '&3'
                suffix: '&7'
                build: true
            inheritance:
                - Guest
                - Member
            permissions:
        Moderator:
            default: false
            info:
                prefix: '&9'
                suffix: '&d'
                build: true
            inheritance:
                - Guest
                - Member
                - Trusted Member
            permissions:
                - 'essentials.ban'
                - 'essentials.time'
                - 'lwc.mod, essentials.tp'
                - 'essentials.tpahere'
                - 'essentials.tphere'
                - 'essentials.kick'
                - +groupmanager.mandemote
                - +groupmanager.manpromote
                - -groupmanager.*
        Admins:
            default: false
            info:
                prefix: '&8'
                suffix: '&a'
                build: true
            inheritance:
                - Guest
                - Member
                - Trusted Member
                - Moderator
            permissions:
                - 'general.teleport'
                - 'general.teleport.here'
                - 'general.player-info'
                - 'essentials.top'
                - 'essentials.jump'
                - 'essentials.back'
                - 'essentials.whois'
                - 'essentials.clearinventory'
                - 'essentials.broadcast'
                - 'essentials.kill'
                - 'essentials.tpaccept'
                - 'essentials.tpdeny'
                - 'essentials.tp'
                - 'essentials.tpahere'
                - 'essentials.tphere'
                - 'essentials.tppos'
                - 'essentials.ban'
                - 'essentials.banip'
                - 'essentials.kick'
                - 'essentials.unban'
                - 'essentials.unbanip'
                - 'essentials.setspawn'
                - 'worldedit.superpickaxe.drawing.brush.*'
                - 'worldedit.clipboard.*'
                - 'worldedit.hcyl'
                - 'worldedit.hsphere'
                - 'worldedit.history.*'
                - 'worldedit.navigation.*'
                - 'worldedit.selection.*'
                - 'worldedit.snow'
                - 'worldedit.thaw'
                - 'worldedit.butcher'
                - '/stopfire'
                - '/allowfire'
                - '/slay'
                - '/heal'
                - '/locate'
                - 'general.spawn'
                - 'essentials.depth'
                - 'essentials.getpos'
                - 'essentials.compass'
                - 'essentials.mail.send'
                - 'essentials.nick'
                - 'essentials.eco'
                - 'essentials.worth'
                - 'essentials.sell'
                - 'essentials.help'
                - 'essentials.tpa'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'worldedit.extinguish'
                - 'general.spawn'
                - 'essentials.msg'
                - 'essentials.afk'
                - 'essentials.rules'
                - 'essentials.motd'
                - 'essentials.me'
                - 'essentials.list'
                - 'essentials.mail'
                - 'essentials.helpop'
                - 'essentials.ping'
                - 'essentials.spawn'
                - 'essentials.new'
                - 'lwc.admin'
        General:
            default: false
            info:
                prefix: '&4'
                suffix: '&4'
                build: true
            inheritance:
            permissions:
                - '*'
                - 'permissions.reload'
                - '/stopfire'
                - '/allowfire'
                - '/slay'
                - '/heal'
                - '/locate'
                - 'groupmanager.*'
     
  28. Offline

    MationMac

    A person with '*' does not need any other permissions at all!
     
  29. Offline

    Easy_Shade

    Hey, just need some quick help, wondering if I'm doing it wrong here. Nobody with the exception of Admins (who have the '*' permission) on my server has access to the 'kits' command in essentials. If someone can look over this group and tell me what I'm doing wrong I'd be very appreciative.

    Code:
    Builder:
        default: false
        permissions: [AutoRepair.*, essentials.help, essentials.home, essentials.kit.*,
          essentials.list, essentials.sethome, essentials.spawn, lwc.protect]
        inheritance: [default]
        info: {prefix: '&b', build: true, suffix: ''}
     
  30. Offline

    MationMac

    If it doesn't work for you, just download Kitplugin.
     
  31. Offline

    Goblox

    This error appears to randomly kill my server. Sometimes it will run for 24+ hours, sometimes it will fail 10 minutes after restarting. The console continues to respond to commands and will display users that were online when it occurred via the list command.

    It may be that it always fails with monsterhunt I suppose... It didn't occur to me that it might be an issue with that plugin but the issue occured before I added the plugin. I'm running without now and will post a log if it fails again without monsterhunt.

    Code:
    2011-03-08 07:38:46 [SEVERE] java.lang.NullPointerException
    2011-03-08 07:38:46 [SEVERE]     at org.anjocaido.groupmanager.permissions.NijikoPermissionsProxy.permission(NijikoPermissionsProxy.java:232)
    2011-03-08 07:38:46 [SEVERE]     at org.anjocaido.groupmanager.permissions.NijikoPermissionsProxy.has(NijikoPermissionsProxy.java:226)
    2011-03-08 07:38:46 [SEVERE]     at com.matejdro.bukkit.monsterhunt.MonsterHunt.permission(MonsterHunt.java:280)
    2011-03-08 07:38:46 [SEVERE]     at com.matejdro.bukkit.monsterhunt.Rewards.NormalReward(Rewards.java:71)
    2011-03-08 07:38:46 [SEVERE]     at com.matejdro.bukkit.monsterhunt.Rewards.Reward(Rewards.java:29)
    2011-03-08 07:38:46 [SEVERE]     at com.matejdro.bukkit.monsterhunt.MonsterHunt.stop(MonsterHunt.java:162)
    2011-03-08 07:38:46 [SEVERE]     at com.matejdro.bukkit.monsterhunt.MonsterHunt$1.run(MonsterHunt.java:248)
    2011-03-08 07:38:46 [SEVERE]     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:122)
    2011-03-08 07:38:46 [SEVERE]     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:345)
    2011-03-08 07:38:46 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:272)
    2011-03-08 07:38:46 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    2011-03-08 07:38:46 [SEVERE] Unexpected exception
    java.lang.NullPointerException
        at org.anjocaido.groupmanager.permissions.NijikoPermissionsProxy.permission(NijikoPermissionsProxy.java:232)
        at org.anjocaido.groupmanager.permissions.NijikoPermissionsProxy.has(NijikoPermissionsProxy.java:226)
        at com.matejdro.bukkit.monsterhunt.MonsterHunt.permission(MonsterHunt.java:280)
        at com.matejdro.bukkit.monsterhunt.Rewards.NormalReward(Rewards.java:71)
        at com.matejdro.bukkit.monsterhunt.Rewards.Reward(Rewards.java:29)
        at com.matejdro.bukkit.monsterhunt.MonsterHunt.stop(MonsterHunt.java:162)
        at com.matejdro.bukkit.monsterhunt.MonsterHunt$1.run(MonsterHunt.java:248)
        at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:122)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:345)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:272)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    Essentials load:
    Code:
    2011-03-08 13:36:21 [INFO] §eLoaded Essentials build 2.0.265 maintained by Zenexer, ementalo, Aelux, Brettflan, KimKandor, and snowleo
    2011-03-08 13:36:21 [INFO] Loaded EssentialsBan build 2.0.265 by Zenexer, ementalo, Eris, and EggRoll
    2011-03-08 13:36:21 [INFO] Loaded EssentialsGod build 2.0.265 by Zenexer, ementalo, Eris, and EggRoll
    2011-03-08 13:36:21 [INFO] GroupManager - INFO - Scheduled Data Saving is set for every 10 minutes!
    2011-03-08 13:36:21 [INFO] GroupManager version 1.0(pre-alpha-3) is enabled!
    2011-03-08 13:36:21 [INFO] Fake Permissions version 2.5 is enabled!
    2011-03-08 13:36:21 [INFO] Loaded EssentialsHome build 2.0.265 by Zenexer, ementalo, Aelux, Brettflan, KimKandor, and snowleo
    2011-03-08 13:36:21 [INFO] Loaded EssentialsSpawn build 2.0.265 maintained by Zenexer, ementalo, Aelux, Brettflan, KimKandor, and snowleo
    2011-03-08 13:36:21 [INFO] Loaded EssentialsTele build 2.0.265 by Zenexer, ementalo, Aelux, Brettflan, KimKandor, and snowleo
     
Thread Status:
Not open for further replies.

Share This Page