Inactive [GEN] Essentials v2.1 [?]

Discussion in 'Inactive/Unsupported Plugins' started by Zenexer, Jan 19, 2011.

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

    Zenexer

  2. Offline

    iTzJaake

    So, can anyone help me out with my post back on p64?
     
  3. Offline

    Solaris765

    I've been getting this error report every time i launch my server but that seems to be the only spot it turns up. if anyone could help or tell me what to change i would be very grateful.
    by what it says i think it has something to do with one of the config files but everything i do doesn't help

    Code:
    org.bukkit.earth2me.essentials.Essentials loadData
    SEVERE: null
    unacceptable character #FFFD special characters are not allowed
    in "<reader>", position 404
        at org.yaml.snakeyaml.reader.StreamReader.checkPrintable(StreamReader.java:68)
        at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:159)
        at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:117)
        at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:106)
        at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:964)
        at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:237)
        at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:183)
        at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:200)
        at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
        at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
        at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:104)
        at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:124)
        at org.yaml.snakeyaml.Yaml.load(Yaml.java:264)
        at org.bukkit.earth2me.essentials.Essentials.loadData(Essentials.java:244)
        at org.bukkit.earth2me.essentials.Essentials.reload(Essentials.java:138)
        at org.bukkit.earth2me.essentials.Essentials.onEnable(Essentials.java:115)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:135)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:175)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:63)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:44)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:156)
        at net.minecraft.server.MinecraftServer.c(MinecraftServer.java:143)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:104)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:186)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:512)
     
  4. Fixing now.

    @Solaris765 save your config as utf-8
     
  5. Offline

    iTzJaake

    @ementalo could you tell me what I'm doing wrong..
    This is my config for permissions but it wont let my builders or my trusted use /item
    Code:
    # Supports "Default" and "GroupUsers"
    plugin:
        permissions:
            system: default
    
    ##
    # 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:
                - 'essentials.spawn'
        Builder:
            default: false
            info:
                prefix:'[&eBuilder]'
                suffix:'&e'
                build: true
            inheritance:
                - Default
            permissions:
                - 'essentials.me'
                - 'essentials.tpaccept'
                - 'essentials.tpdeny'
                - 'essentials.warp'
                - 'essentials.item'
                - 'essentials.give'
                - 'essentials.list'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'essentials.clearinventory'
                - 'essentials.spawn'
                - 'essentials.help'
                - 'essentials.afk'
                - 'essentials.rules'
                - 'essentials.msg'
                - 'essentials.compass'
                - 'essentials.depth'
        Trusted:
            default: false
            info:
                prefix:'[&dTrusted]'
                suffix:'&d'
                build: true
            inheritance:
                - Builder
            permissions:
                - 'essentials.tp'
                - 'essentials.tpahere'
                - 'essentials.me'
                - 'essentials.tphere'
                - 'essentials.tpa'
                - 'essentials.tp'
                - 'essentials.tphere'
                - 'essentials.heal'
        Moderator:
            default: false
            info:
                prefix:'[&3Moderator]'
                suffix:'&3'
                build: true
            inheritance:
                - Trusted
            permissions:
                - 'essentials.time'
                - 'essentials.tp'
                - 'essentials.tphere'
                - 'essentials.whois'
                - 'essentials.*'
        Admins:
            default: false
            info:
                prefix:'[&cAdmins]'
                suffix:'&c'
                build: true
            inheritance:
                - Moderator
            permissions:
                - '*'
    
    users:
        pepsimax_:
            group: 'Admins'
            permissions:
        Dr_Rabbit:
            group: 'Admins'
            permissions:
        _mudkipz_:
            group: 'Trusted'
            permissions:
          supabad:
            group: 'Builder'
            permissions:
                - 'essentials.item'
           r0fl_z:
            group: 'Trusted'
            permissions:
     
  6. Offline

    Aelux

    Just a quick mention. The new /broadcast command does not broadcast the full message. "Hello all, testing 123" will result in "Hello". It would also be nice to have a formatting for the message, and a broadcast tag.

    Something like prefix: [&cBroadcast&f] &a (all messages would be bright green)
     
  7. @iTzJaake do you get any console errors?
     
  8. Offline

    iTzJaake

    @ementalo
    No only supabad tried command /item 5 64
    or supabad accessed denied.
     
  9. Offline

    Matyr

    Hi,
    when a normal Player type /help in chat he get a very huge list with commands, but he cant use them because of permissions.
    So can i turn on that player can see only commands that they can use?
     
  10. Offline

    MiniKahn

    a little question..

    What I have to do when i am /mod a player, whitch plugin i must reload?

    /plugin reload Permissions???
     
  11. Offline

    dark navi

    You are canceling the command out. Remove the essentials.item from the individual person.
     
  12. Offline

    tekac

    Was jumpto removed?
     
  13. Offline

    feyola

    im sorry, is that possible to convert hmod homes.txt to essentials users base?
     
  14. Offline

    iTzJaake

    @dark navi
    Did it and still access denied.
     
  15. Offline

    Solaris765

    ah thank you
     
  16. Offline

    thegleek

    thanks. wasn't aware of this new change. too many changes! i can't keep up anymore!

    i can't live & breathe bukkit/minecraft 24/7/365 like the rest of you can! bah!

    and fwiw i think that each plugin having its own plugin.yml file in a separate directory is stupid as all hell.
     
  17. Offline

    jwideman

    Okay, so as it stands right now, if any commands from other plugins match commands in essentials, the essentials one is the only one that works? And disabling it means neither works?
     
  18. Offline

    Matyr

    That meens you see every help, although it isnt allowed in permission that people can use it?
     
  19. Offline

    WardenWolf

    Could you PLEASE provide a way to disable the Warp system in the config file. Currently there is no way to remove a warp once created, and it is conflicting with a Warps plugin that imports our old hMod warps. We can't abandon our old warps and your system is not the best. We need to have a way to use alternative warp systems. Having to go in and delete the file from the command line is simply not an acceptable means of removing warps.
     
  20. /delwarp or http://forums.bukkit.org/threads/ge...l-permissions-support.1262/page-63#post-38863
    --- merged: Feb 4, 2011 12:30 AM ---
    Its fisticuffs, and the one with bigger fists wins.

    http://forums.bukkit.org/threads/ge...l-permissions-support.1262/page-63#post-38863
    --- merged: Feb 4, 2011 12:36 AM ---
    Its the plugin.yml that you compile with the zip, but the whole "you cannot cancel events" thing is annoying
     
  21. Offline

    iTzJaake

    Still accessed denied for my Builders, Trusted and Moderators.
     
  22. Offline

    Sargeo

    Code:
    2011-02-03 16:43:13 [INFO] Starting minecraft server version Beta 1.2_01
    2011-02-03 16:43:13 [INFO] Loading properties
    2011-02-03 16:43:13 [INFO] Starting Minecraft server on *:25565
    2011-02-03 16:43:13 [INFO] Preparing level "world"
    2011-02-03 16:43:13 [INFO] Preparing start region
    2011-02-03 16:43:14 [INFO] Preparing spawn area: 24%
    2011-02-03 16:43:15 [INFO] Preparing spawn area: 61%
    2011-02-03 16:43:16 [INFO] [iChat] version [1.5] (Maria Holic) loaded
    2011-02-03 16:43:16 [INFO] [Permissions] version [2.0] (Handler) loaded
    2011-02-03 16:43:16 [INFO] WorldEdit 3.2.2 loaded.
    2011-02-03 16:43:16 [INFO] WorldEdit: Permissions plugin detected! Using Permiss
    ions plugin for permissions.
    2011-02-03 16:43:16 [INFO] WorldGuard 3.2.2 loaded.
    2011-02-03 16:43:16 [INFO] WorldGuard: Permissions plugin detected! Using Permis
    sions plugin for permissions.
    2011-02-03 16:43:16 [INFO] WorldGuard: Single session is enforced.
    2011-02-03 16:43:16 [INFO] WorldGuard: TNT ignition is blocked.
    2011-02-03 16:43:16 [INFO] WorldGuard: Lighters are blocked.
    2011-02-03 16:43:16 [INFO] WorldGuard: Lava fire is blocked.
    2011-02-03 16:43:16 [INFO] WorldGuard: All fire spread is disabled.
    2011-02-03 16:43:16 [WARNING] Warps were not found in warps folder
    2011-02-03 16:43:16 [INFO] Loaded Essentials b137 by Zenexer, ementalo, Eris, an
    d EggRoll
    2011-02-03 16:43:16 [INFO] MoveCraft 0.6.5 plugin enabled
    2011-02-03 16:43:16 [INFO] WorldEdit: Permissions plugin detected! Using Permiss
    ions plugin for permissions.
    2011-02-03 16:43:16 [INFO] WorldGuard: Permissions plugin detected! Using Permis
    sions plugin for permissions.
    2011-02-03 16:43:16 [INFO] [Reputation] version [1.6] loaded
    2011-02-03 16:43:16 [INFO] SearchIds 1.1 enabled
    2011-02-03 16:43:16 [INFO] SearchIds: Updating data from https://github.com/croe
    mmich/SearchIds/raw/master/search-ids-data.xml...
    2011-02-03 16:43:17 [INFO] SearchIds: Update complete!
    2011-02-03 16:43:17 [INFO] Done! For help, type "help" or "?"
    2011-02-03 16:43:36 [WARNING] Can't keep up! Did the system time change, or is t
    he server overloaded?
    138 recipes
    2011-02-03 16:45:43 [INFO] Sargeo [] logged in with entity i
    d 200
    Player count: 1
    java.lang.IllegalArgumentException: Unknown command
            at org.bukkit.earth2me.essentials.commands.CommandWrapper.get(CommandWra
    pper.java:83)
            at org.bukkit.earth2me.essentials.commands.Commandhelp.getHelpLines(Comm
    andhelp.java:90)
            at org.bukkit.earth2me.essentials.commands.Commandhelp.run(Commandhelp.j
    ava:39)
            at org.bukkit.earth2me.essentials.Essentials.onCommand(Essentials.java:6
    34)
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:17)
            at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:76
    )
            at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1
    62)
            at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:584)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:563)
            at net.minecraft.server.Packet3Chat.a(SourceFile:24)
            at net.minecraft.server.NetworkManager.a(SourceFile:232)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:71)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:104)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:283)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:209)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:512)
    java.lang.IllegalArgumentException: Unknown command
            at org.bukkit.earth2me.essentials.commands.CommandWrapper.get(CommandWra
    pper.java:83)
            at org.bukkit.earth2me.essentials.commands.Commandhelp.getHelpLines(Comm
    andhelp.java:90)
            at org.bukkit.earth2me.essentials.commands.Commandhelp.run(Commandhelp.j
    ava:39)
            at org.bukkit.earth2me.essentials.Essentials.onCommand(Essentials.java:6
    34)
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:17)
            at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:76
    )
            at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1
    62)
            at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:584)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:563)
            at net.minecraft.server.Packet3Chat.a(SourceFile:24)
            at net.minecraft.server.NetworkManager.a(SourceFile:232)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:71)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:104)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:283)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:209)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:512)
    2011-02-03 16:45:48 [INFO] Sargeo lost connection: disconnect.quitting
    2011-02-03 16:45:49 [INFO] Freed 196.32759857177734 MB.
    
    This error is bugging the crap out of me. Whenever I type /help, this error occurs. I dont know why it says unknown command, but the command still works in game.
     
  23. Offline

    mattekure

    For the /kit command, when someone uses it before the timeout, the server log shows "Kit is timed" would it be possible to show "<player> attempted to use kit <kit>" or something to that effect.
     
  24. Offline

    Binder News

    my players can only use commands if they are ops, is that a bukkit thing, or Essentials thing?
     
  25. Offline

    Themself

    Sorry to bother you guys, but I can't find the newest JAR. Where is it? I am trying to get time working again.
     
  26. Offline

    Sargeo

  27. Offline

    Themself

    That's not the new version.
    --- merged: Feb 4, 2011 1:33 AM ---
    The source is on his java area thingy.
     
  28. Offline

    sawine

    By remove the commands do you mean delete the .class in the commands file ?
    It kills my server whenever some1 use a command when i do that.

    I tried different configurations and Im still not able to disable the warp and home.

    When you say edit the plugin.yml, you mean add the commands to the disabled list ?

    Im sorry but i need clearer explanations, cant get this to work :/
     
  29. Offline

    jwideman

    I think you just delete the command in the plugin.yml
     
  30. Offline

    chill1977

    First make sure you have the latest TESTED version of Permissions and Essentials.
    Next put the Permissions and Essentials .jar in the plugins folder and the corresponding folders with each plugin in the plugins folder. Run minecraft to generate any files that need to be generated, then shut it down again. You then need to edit your Essentials config.yml that is found in plugins/Essentials/config.yml.

    Essentials comes with certain commands already under the restricted commands list. I don't believe these still work as of the new updates and Bukkit changing the way it handles the commands. But none the leass delete those commands that are there to save yourself headeache later. Below is a basic Essentials config.yml that should work for most everyone.
    Code:
    # A color code between 0-9 or a-f. Set to 'none' to disable.
    ops-name-color: 'none'
    # The character(s) to prefix all nicknames, so that you know they are not true usernames.
    nickname-prefix: '~'
    # The delay, in seconds, required between /home, /tp, /warp, etc.
    teleport-cooldown:
    # The delay, in seconds, required between /heal attempts
    heal-cooldown:
    # The number of items given if the quantity parameter is left out in /item or /give.
    default-stack-size: 1
    # The message of the day, displayed on connect and by typing /motd.
    motd:
      - '&cWelcome, {PLAYER}&c!'
      - '&fType &c/help&f for a list of commands.'
    # The server rules, available by typing /rules
    rules:
      - '[1] Be respectful'
      - '[2] Be ethical'
      - '[3] Use common sense'
    # Disabled commands will be completelly unavailable on the server.
    disabled-commands:
    # Restricted commands will only be available to ops.
    # These will have NO EFFECT if you have Permissions installed!
    # These are here only if you want something simpler than Permissions.
    restricted-commands:
    # Note: All items MUST be followed by a quantity!
    # Times are measured in seconds.
    kits:
      tools:
        delay: 10
        items:
          - 277 1
          - 278 1
          - 279 1
    # End of File
    A few rules that apply for .yml files.
    1) If you edit the .yml file keep the same format, this means same amount of spaces from the edge of paper. Doesn't seem like a big deal but it is!
    2) Do not use the apostrophe in the text you want displayed. Example : - '[1] Be respectfulof chill's stuff.' This comes across that the code that starts before [1] should end after chill. Thus, throwing the rest of your command line starts and stops off throughout the file and leaving an open command at the end of the file.
    3) Be sure to wrapped all commands in apostrophes. Some of them are not required but it doesn't hurt and will save your headache later.
    4) Leave a space after every colon, before every command starts.
    5) Do not use tabs. Use the spacebar. If you are using notepad++ there is a setting in the settings at the top that lets you use spaces when tab is hit instead of actually tabbing.
    Every plugins will be required to change their commands so that other plugins using the same commands won't try to load over them causing neither to work but for now here is how you disable the commands you don't want Essentials to have priority over.
    1) Open the Essentials.jar with winrar or winzip.
    2) Open the plugin.yml in notepad or notepad++.
    3) Delete the commands that you don't want to use Essentials for.
    4) Save file and close, at this time you should be prompted as to whether or not you want the file updated in the .jar, click yes.

    Now that you have Essentials set up we will move to Permissions.
    Navigate to plugins/Permissions/config.yml and open in notepad.
    Same rules apply to this as Essentials as stated above. Basic format follows 4,8, and 12 spaces from the margin, once again NO TABS.
    It comes with a basic format of what it should look like. I suggest loading up Minecraft to make sure it loads ok the first time before editing the file. If it does not load without errors then you need to update Permissions, Essentials, or Craftbukkit.
    Do not say you already have. They are changing versions rather quickly and you can bet the one you downloaded 3 hrs ago is not the newest one.
    If it loads ok then close the server. Do not try the commands and say it doesn't work, at this point you have no commands.
    Now that you have the Permissions config.yml open let's start the editing.
    You can change the group names to suit your needs. If you want to add new groups to the existing ones, do not use copy and paste.
    This may work sometimes but more times than not it will cause errors.
    My suggestion is that each time you change anything you test it at http://yaml-online-parser.appspot.com/ to make sure you did that part correctly before moving on. This will make it easier to find errors.
    This is an example group with color which I will explain later.
    Code:
        Member:
            default: false
            info:
                prefix: '&cMember'
                suffix: '&c'
                build: true
            inheritance:
                - Default
            permissions:
                - 'essentials.me'
                - 'essentials.clearinventory'
                - 'essentials.afk'
                - 'essentials.sell'
                - 'essentials.warp'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'essentials.accept'
                - 'essentials.tp'
                - 'essentials.item'
                - 'magiccarpet.mc'
                - 'woolcolor.spawn'
    You must have an spostrophe at the beginning of each line of command and at the end.
    You must have a space after each dash.
    You must have a space after each colon.
    After you add each group you are going to add then check it in the parser linked above
    Permission nodes are listed on the wiki posted on the first post of every page.
    Your highest group should simply have permissions: '*' , this will give them access to all commands.
    You see in the code that this group has inheritance: -Default. This gives the users of this group all the permissions listed for this group as well as those permissions listed for the Default group.
    This allows each permission "node" to be used only once per document unless you have a group that you do not want to use inheritance. In simplicity each group should inherite from the group below it. 1 group not 3 or 4 that are blowe it. Members will inherite from Default, Mods will inherite from Members, Admin will inherite from Mods.
    Now you can edit the users.
    Default is the base level anyone that joins your server level. For small servers that want protection against greifers. I suggest you use this level to stop people from building until they are added to a higher group. In order to stop people from building you must have the Antibuild plugin and set build: false
    As for bigger servers that have thousands of people joining per hour this is not realistic, so you set the Default as the basic can build member and have other plugins installed to control greifing like WorldGuard/WorldEdit, BigBrother or numerous others in the forum.
    The new version of Permissions allows you to edit per user colors. While I am not positive, I would assume this will over-ride the group seetings of that user. I know that permissions given in the user area add to those permissions given to that users group for that user.
    Code:
    users:
        chill1977:
            group: Mod
            info:
                prefix: '&aMOd'
                suffix: '&a'
            permissions: 
                - 'essentials.banip' 
    This code says that the user chill1977 is in the Mod group, which means he has access to the permissions given to that group plus any group it inherites from (Members and Default) plus the command /banip. This enables you to give special commands to certain people without giving them to the whole group.
    It also adds color and the word Mod before his name.
    You do not add users that you want to use the Default group. They will automatically use the DEfault group when they log in.
    In order to use color you need a plugin that enables and formats the color. I suggest iChat, while there are others, this pluign is made by the Permissions author which means it is more liely to work with permissions, plus it very easy to use.
    Here is the code that I use for iChat.
    Code:
    message-format: '+prefix+suffix +name: +message'
    Once you have everything set up like you want it, hopefully you have listened and been testing the file throughout the editing process using the online parser and have no errors, then this should work. This is an example of my config.yml for permissions with basic Essentials commands.
    Code:
    plugin:
        permissions:
            system: default
    groups:
        Default:
            default: true
            info:
                prefix: 'New'
                suffix:
                build: false
            inheritance: 
            permissions:
                - 'essentials.spawn'
                - 'essentials.motd'
                - 'essentials.help'
        Member:
            default: false
            info:
                prefix: '&cMember'
                suffix: '&c'
                build: true
            inheritance:
                - Default
            permissions:
                - 'essentials.me'
                - 'essentials.clearinventory'
                - 'essentials.afk'
                - 'essentials.sell'
                - 'essentials.warp'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'essentials.accept'
                - 'essentials.tp'
                - 'essentials.item'
        VIP:
            default: false
            info:
                prefix: '&cVIP'
                suffix: '&c'
                build: true
            inheritance:
                - Member
            permissions:
                - 'essentials.me'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'essentials.clearinventory'
                - 'essentials.time'
                - 'essentials.msg'
                - 'essentials.getpos'
                - 'essentials.afk'
                - 'essentials.tree'
                - 'essentials.bigtree'
                - 'essentials.sell'
                - 'essentials.warp'
                - 'essentials.setwarp'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'essentials.accept'
                - 'essentials.tp'
                - 'essentials.item'
        Mod:
            default: false
            info:
                prefix: '&1Mod'
                suffix: '&1'
                build: true
            inheritance:
                - VIP
            permissions:
                - 'essentials.list'
                - 'essentials.kick'
                - 'essentials.tphere'
                - 'essentials.give'
                - 'essentials.heal'
                - 'essentials.heal'
                - 'essentials.ban'
                - 'essentials.helpop'
                - 'essentials.unban'
                - 'essentials.banip'
                - 'essentials.unbanip'
        Admin:
            default: false
            info:
                prefix: '&aAdmin'
                suffix: '&a'
                build: true
            inheritance:
                - Mod
            permissions:
                - '*'
    users:
        chill1977:
            group: Admin
            info:
               prefix:
               suffix
            permissions:
    I have removed all of the ## lines as these are just comment tags and have no bearing on the file. This makes it easier to look through the file.
    If I have missed anything or you have any suggestions to add then please send me a convo with proposed ideas. Thanks.
    You can download this here <Edit by Moderator: Redacted mediafire url>
     
    Last edited by a moderator: Dec 15, 2016
    Themself and iTzJaake like this.
  31. Offline

    Themself

    -snip-
    EDIT: I'm looking for build 221.
     
Thread Status:
Not open for further replies.

Share This Page