Solved Group Manager Help

Discussion in 'Bukkit Help' started by johnstar75, Jul 30, 2012.

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

    johnstar75

    "an internal error has occured while trying to perform this command"

    This is what I getting when I edit my group manager file.

    I want to create custom groups and have been to all different sites trying to figure it out, and needless to say I can't get it to work the way they are showing.
    I followed what was said, plugins>groupmanager>worlds>myworld>groups YML file and that is what I edited and it gave me the above error.

    Current yml (open)
    # Group inheritance
    # any inherited groups prefixed with a g: are global groups
    # These groups are defined in the globalgroups.yml
    # and can be inherited in any worlds groups/users.yml.
    #
    # Groups without the g: prefix are groups local to this world
    # and defined in the this groups.yml file.
    groups:
    Builder:
    default: true
    permissions: []
    inheritance:
    - default
    - essentials.motd
    - essentials.rules
    - g:essentials_builder
    - g:towny_builder
    - chestShop.shop.*
    info:
    prefix: '&2'
    build: true
    suffix: ''
    Moderator:
    default: false
    permissions: []
    inheritance:
    - builder
    - g:essentials_moderator
    - g:bukkit_moderator
    - g:towny_moderator
    - g:essentials_admin
    - g:bukkit_admin
    - g:towny_admin
    info:
    prefix: '&5MOD'
    build: true
    suffix: ''
    Admin:
    default: false
    permissions: []
    inheritance:
    - moderator
    - g:essentials_admin
    - g:bukkit_admin
    - g:towny_admin
    - nocheat.checks.moving.flying
    info:
    prefix: '&bADMIN&b'
    build: true
    suffix: ''
    Owner:
    default: false
    permissions:
    - '*'
    inheritance:
    - admin
    info:
    prefix: '&4OP'
    build: true
    suffix: ''


    This is the YML that I want
    NEW YML (open)
    # Group inheritance
    # any inherited groups prefixed with a g: are global groups
    # These groups are defined in the globalgroups.yml
    # and can be inherited in any worlds groups/users.yml.
    #
    # Groups without the g: prefix are groups local to this world
    # and defined in the this groups.yml file.
    groups:
    Citizen:
    default: true
    permissions:
    - essentials.help
    - essentials.helpop
    - essentials.me
    - essentials.motd
    - essentials.afk
    - essentials.rules
    - essentials.spawn
    - essentials.signs.use.buy
    - essentials.signs.use.sell
    - essentials.balance
    - essentials.pay
    - essentials.kit
    inheritance: []
    info:
    prefix: '&aCitizen'
    build: true
    suffix: ''
    Builder:
    default: false
    perimission:
    - essentials.backondeath
    - essentials.home
    - essentials.sethome
    - essentials.signs.create.disposal
    - essentials.mail
    - essentials.mail.send
    inheritance:
    - Citizen
    info:
    prefix: '&bBuilder'
    build: true
    suffix: ''
    Trustee:
    default: false
    permissions:
    - essentials.tpa
    - essentials.tpaccept
    - essentials.tpahere
    - essentials.tpdeny
    - essentials.mute
    inheritance:
    - Citizen
    - Builder
    info:
    prefix: '&dTrustee'
    build: true
    suffix: ''
    Moderator:
    default: false
    permission:
    - -essentials.mute.exempt
    - essentials.kick
    - essentials.kick.notify
    - essentials.jails
    - essentials.invsee
    - essentials.fly
    inheritance:
    - Trustee
    - Builder
    - Citizen
    info:
    prefix: '&eMOD'
    build: true
    suffix: ''
    Admin:
    default: false
    permission:
    '*'
    inheritance:
    - Moderator
    - Trustee
    - Builder
    - Citizen
    info:
    prefix: '&fADMIN'
    build: true
    suffix: ''
    SuperAdmin:
    default: false
    permission: []
    Inheritance:
    info:
    prefix: '&cCo-Op'
    build: true
    suffix: ''
    Op:
    default: false
    permission:
    '*'
    inheritance:
    '*'
    info:
    prefix: '&cOP'
    build: true
    suffix: ''


    Do I also need to edit the globalgroups under groupmanager to reflect the new YML file. I am lost on this.
     
  2. Offline

    Omnitv

    f there is any errors coming from youre console or GUI please post them
    Please post youre permissions.yml at pastie or pastebin.
    Pastebin http://pastebin.com/
    Pastie http://pastie.org/
    Or at the code box Symbol {}#
    and then link them here
     
  3. Offline

    Necrodoom

    you are trying to inherit permission nodes. they should be in permissions section, not inheritance
     
  4. Offline

    jacklin213

    Well first off CORRECT that horrible spacing lol :) that would fix it. if it doesn't can u post the properly spaced one using code brackets or using http://pastebin.com
     
  5. Offline

    johnstar75

    The error is an internal error has occured while trying to perform this command
    I'm not sure how to do the other stuff but I'll try

    The current YML file, copied directly from the current working server is.
    <script src="http://pastebin.com/embed_js.php?i=jmRiJbyx"></script>

    What I want it to be like is
    <script src="http://pastebin.com/embed_js.php?i=RbV0Dw7k"></script>

    Not sure what else to do. There is nothing wrong with the spacing, it is straight from the file itself. The current file is the one that is working, the second one is the one I need to work
     
  6. Offline

    Omnitv

  7. Offline

    johnstar75

    I don't know how to "fix" them, come one guys work with me here. I have never had to post to these forums and don't know how to do this.
     
  8. Offline

    Necrodoom

    the second file is broken, you broke your * nodes
    fix: http://pastie.org/4364050

    the first file is broken, you are trying to inherit permissions
    fix: http://pastie.org/4364059
     
  9. Offline

    johnstar75

    These might be broken, but it is what is currently used on the server.
     
  10. Offline

    Necrodoom

    just use the links i gave you, they contain the working files.

    for the first file, you were putting permission nodes in inheritance section instead of permissions section

    for second file, you made inheritance loops and did * nodes like this: '*' instead of - '*'
     
  11. Offline

    johnstar75

    Thanks so much, I will try this and hope it works

    I tried the file the way you wrote but still get "An internal error occured while attempting to perform this command"
    This happens when I try to move a person from one group to the other

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016
  12. Offline

    jacklin213

    Did u put ur self into admin group first
     
  13. Offline

    johnstar75

    I'm the op

    I really appreciate all the help its not totally fixed but its on the way there are parts that are not working.

    Ok, so if some one could write my files and make them work I would greatly appreciate it. lol.

    I have tried everything and seems that nothing works right. I get part of it to work, then the rest doesnt work. Is there an easier perms program.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016
  14. Offline

    jacklin213

    well group manager is easy because it has premade nodes which people usually have
     
  15. Offline

    johnstar75

    Well my 1st group worked, the 2nd didnt - they did inherit the 1st group, the 3rd group worked but didnt inherit anything from the 2nd group.

    I have suspect this has something to do with globalgroups, although tutorials say you dont have to edit them.
     
  16. Offline

    jacklin213

  17. Offline

    johnstar75

     
  18. Offline

    Necrodoom

    paste the startup log. you may have more erroring files.
     
  19. Offline

    johnstar75

    Code:
    2012-08-01 03:35:30 [INFO] Starting minecraft server version 1.2.5
    2012-08-01 03:35:30 [WARNING] **** NOT ENOUGH RAM!
    2012-08-01 03:35:30 [WARNING] To start the server with more ram, launch it as "java -Xmx1024M -Xms1024M -jar minecraft_server.jar"
    2012-08-01 03:35:30 [INFO] Loading properties
    2012-08-01 03:35:30 [INFO] Starting Minecraft server on *:25565
    2012-08-01 03:35:30 [INFO] This server is running CraftBukkit version git-Bukkit-1.2.5-R5.0-b2262jnks (MC: 1.2.5) (Implementing API version 1.2.5-R5.0)
    2012-08-01 03:35:30 [SEVERE] Could not load 'plugins\WelcomeBack.jar' in folder 'plugins'
    org.bukkit.plugin.InvalidPluginException: java.lang.UnsupportedClassVersionError: me/Pelykan/WelcomeBack/Welcome : Unsupported major.minor version 51.0
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:151)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:305)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:230)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:214)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:190)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:55)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:158)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:424)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:492)
    Caused by: java.lang.UnsupportedClassVersionError: me/Pelykan/WelcomeBack/Welcome : Unsupported major.minor version 51.0
        at java.lang.ClassLoader.defineClass1(Native Method)
        at java.lang.ClassLoader.defineClassCond(Unknown Source)
        at java.lang.ClassLoader.defineClass(Unknown Source)
        at java.security.SecureClassLoader.defineClass(Unknown Source)
        at java.net.URLClassLoader.defineClass(Unknown Source)
        at java.net.URLClassLoader.access$000(Unknown Source)
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:41)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:29)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Unknown Source)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:140)
        ... 8 more
    2012-08-01 03:35:30 [SEVERE] Could not load 'plugins\PressurePort.jar' in folder 'plugins'
    org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: org/bukkit/util/config/Configuration
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:151)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:305)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:230)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:214)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:190)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:55)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:158)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:424)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:492)
    Caused by: java.lang.NoClassDefFoundError: org/bukkit/util/config/Configuration
        at me.Wurstfabrik.PressurePort.PressurePort.<clinit>(PressurePort.java:39)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Unknown Source)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:140)
        ... 8 more
    Caused by: java.lang.ClassNotFoundException: org.bukkit.util.config.Configuration
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:41)
        at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:29)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        ... 12 more
    2012-08-01 03:35:30 [INFO] [FoundBoxx] Loading FoundBoxx v1.7.8
    2012-08-01 03:35:30 [INFO] [GroupManager] Loading GroupManager v1.9 (2.9.1) (Phoenix)
    2012-08-01 03:35:30 [INFO] [WorldEdit] Loading WorldEdit v1139-6e24d98
    2012-08-01 03:35:30 [INFO] [Vault] Loading Vault v1.2.16-b184
    2012-08-01 03:35:30 [INFO] [TreeAssist] Loading TreeAssist v3.9
    2012-08-01 03:35:30 [INFO] [WorldGuard] Loading WorldGuard v599-a7d1988
    2012-08-01 03:35:30 [INFO] [SimplyVanish] Loading SimplyVanish v0.4.3
    2012-08-01 03:35:30 [INFO] [Announcer] Loading Announcer v1.2.0
    2012-08-01 03:35:30 [INFO] [HawkEye] Loading HawkEye v1.0.7b
    2012-08-01 03:35:30 [INFO] [Lockette] Loading Lockette v1.6
    2012-08-01 03:35:30 [INFO] [Timeismoney] Loading Timeismoney v0.5
    2012-08-01 03:35:30 [INFO] [SimpleSpleef] Loading SimpleSpleef v3.0.17
    2012-08-01 03:35:30 [INFO] [NoCheat] Loading NoCheat v3.5.0
    2012-08-01 03:35:30 [INFO] [mcMMO] Loading mcMMO v1.3.06-b713
    2012-08-01 03:35:30 [INFO] [MobDisguise] Loading MobDisguise v1.81
    2012-08-01 03:35:30 [INFO] [ButtonWarp] Loading ButtonWarp v1.8.1
    2012-08-01 03:35:30 [INFO] [Essentials] Loading Essentials v2.9.1
    2012-08-01 03:35:30 [INFO] [Jobs] Loading Jobs v2.8.3
    2012-08-01 03:35:30 [INFO] [EssentialsProtect] Loading EssentialsProtect v2.9.1
    2012-08-01 03:35:30 [INFO] MLog clients using java 1.4+ standard logging.
    2012-08-01 03:35:30 [INFO] [EssentialsSpawn] Loading EssentialsSpawn v2.9.1
    2012-08-01 03:35:30 [INFO] [ChestShop] Loading ChestShop v3.39
    2012-08-01 03:35:30 [INFO] [EssentialsChat] Loading EssentialsChat v2.9.1
    2012-08-01 03:35:30 [INFO] [Factions] Loading Factions v1.6.6b
    2012-08-01 03:35:30 [INFO] [Vault] Enabling Vault v1.2.16-b184
    2012-08-01 03:35:30 [INFO] [Vault][Economy] Essentials Economy found: Waiting
    2012-08-01 03:35:30 [INFO] [Vault][Permission] GroupManager found: Waiting
    2012-08-01 03:35:30 [INFO] [Vault][Permission] SuperPermissions loaded as backup permission system.
    2012-08-01 03:35:30 [INFO] [Vault][Chat] GroupManager found: Waiting
    2012-08-01 03:35:30 [INFO] [Vault] Enabled Version 1.2.16-b184
    2012-08-01 03:35:30 [INFO] Preparing level "wobbygon"
    2012-08-01 03:35:31 [INFO] Default game type: 0
    2012-08-01 03:35:31 [INFO] Preparing start region for level 0 (Seed: -3928820349084844801)
    2012-08-01 03:35:31 [INFO] Preparing start region for level 1 (Seed: -3928820349084844801)
    2012-08-01 03:35:32 [INFO] Preparing spawn area: 56%
    2012-08-01 03:35:32 [INFO] Preparing start region for level 2 (Seed: -3928820349084844801)
    2012-08-01 03:35:32 [INFO] [FoundBoxx] Enabling FoundBoxx v1.7.8
    2012-08-01 03:35:32 [INFO] [FoundBoxx] No custom permission plugins found, using original permissions.
    2012-08-01 03:35:32 [INFO] [FoundBoxx v1.7.8] Enabled.
    2012-08-01 03:35:32 [INFO] [GroupManager] Enabling GroupManager v1.9 (2.9.1) (Phoenix)
    2012-08-01 03:35:32 [INFO] GroupManager - INFO - World Found: wobbygon
    2012-08-01 03:35:32 [INFO] GroupManager - INFO - World Found: wobbygon_nether
    2012-08-01 03:35:32 [INFO] GroupManager - INFO - World Found: wobbygon_the_end
    2012-08-01 03:35:32 [INFO] GroupManager - INFO - World Found: world
    2012-08-01 03:35:32 [INFO] GroupManager - INFO - Superperms support enabled.
    2012-08-01 03:35:32 [INFO] GroupManager - INFO - Scheduled Data Saving is set for every 10 minutes!
    2012-08-01 03:35:32 [INFO] GroupManager - INFO - Backups will be retained for 24 hours!
    2012-08-01 03:35:32 [INFO] GroupManager version 1.9 (2.9.1) (Phoenix) is enabled!
    2012-08-01 03:35:32 [INFO] [Vault][Permission] GroupManager hooked.
    2012-08-01 03:35:32 [INFO] [Vault][Chat] GroupManager - Chat hooked.
    2012-08-01 03:35:32 [INFO] [WorldEdit] Enabling WorldEdit v1139-6e24d98
    2012-08-01 03:35:32 [INFO] WEPIF: Using the Bukkit Permissions API.
    2012-08-01 03:35:32 [INFO] [TreeAssist] Enabling TreeAssist v3.9
    2012-08-01 03:35:32 [INFO] [WorldGuard] Enabling WorldGuard v599-a7d1988
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon) TNT ignition is PERMITTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon) Lighters are PERMITTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon) Lava fire is blocked.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon) Fire spread is UNRESTRICTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] Loaded configuration for world 'wobbygon'
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_nether) TNT ignition is PERMITTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_nether) Lighters are PERMITTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_nether) Lava fire is blocked.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_nether) Fire spread is UNRESTRICTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] Loaded configuration for world 'wobbygon_nether'
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_the_end) TNT ignition is PERMITTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_the_end) Lighters are PERMITTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_the_end) Lava fire is blocked.
    2012-08-01 03:35:32 [INFO] [WorldGuard] (wobbygon_the_end) Fire spread is UNRESTRICTED.
    2012-08-01 03:35:32 [INFO] [WorldGuard] Loaded configuration for world 'wobbygon_the_end'
    2012-08-01 03:35:32 [INFO] [WorldGuard] 38 regions loaded for 'wobbygon'
    2012-08-01 03:35:32 [INFO] [WorldGuard] 0 regions loaded for 'wobbygon_nether'
    2012-08-01 03:35:32 [INFO] [WorldGuard] 0 regions loaded for 'wobbygon_the_end'
    2012-08-01 03:35:32 [INFO] [SimplyVanish] Enabling SimplyVanish v0.4.3
    2012-08-01 03:35:32 [INFO] [SimplyVanish] Enabled
    2012-08-01 03:35:32 [INFO] [Announcer] Enabling Announcer v1.2.0
    2012-08-01 03:35:32 [INFO] Announcer v1.2.0 is enabled!
     
    2012-08-01 03:35:32 [INFO] [HawkEye] Enabling HawkEye v1.0.7b
    2012-08-01 03:35:32 [INFO] [HawkEye] Starting HawkEye 1.0.7b initiation process...
    2012-08-01 03:35:32 [INFO] [HawkEye] Using GroupManager for user permissions
    2012-08-01 03:35:32 [INFO] [HawkEye] Performing update check...
    2012-08-01 03:35:33 [INFO] [HawkEye] No updates available for HawkEye
    2012-08-01 03:35:33 [INFO] [HawkEye] WorldEdit found, selection rollbacks enabled
    2012-08-01 03:35:33 [INFO] [HawkEye] Version 1.0.7b enabled!
    2012-08-01 03:35:33 [INFO] [Lockette] Enabling Lockette v1.6
    2012-08-01 03:35:33 [INFO] [Lockette] Version 1.6 is being enabled!  Yay!  (Core version 1.3.2)
    2012-08-01 03:35:33 [INFO] [Lockette] Detected craftbukkit build [2262] ok.
    2012-08-01 03:35:33 [INFO] [Lockette] Custom lockable block list: [116, 84, 57]
    2012-08-01 03:35:33 [INFO] [Lockette] Enabled link to plugin GroupManager for Groups/Permissions, version 1.9 (2.9.1) (Phoenix)
    2012-08-01 03:35:33 [INFO] [Lockette] Using linked plugin for admin permissions.
    2012-08-01 03:35:33 [INFO] [Lockette] Ready to protect your containers.
    2012-08-01 03:35:33 [INFO] [Timeismoney] Enabling Timeismoney v0.5
    2012-08-01 03:35:33 [INFO] Timeismoney is now enabled
    2012-08-01 03:35:33 [INFO] [SimpleSpleef] Enabling SimpleSpleef v3.0.17
    2012-08-01 03:35:33 [INFO] SimpleSpleef v3.0.17 is loading.
    2012-08-01 03:35:33 [INFO] [SimpleSpleef] Vault hooked as economy plugin.
    2012-08-01 03:35:33 [INFO] [SimpleSpleef] Vault hooked as permission plugin.
    2012-08-01 03:35:33 [INFO] [SimpleSpleef] Found WorldEdit 1139-6e24d98. Using it for selections.
    2012-08-01 03:35:33 [INFO] [NoCheat] Enabling NoCheat v3.5.0
    2012-08-01 03:35:33 [INFO] [NoCheat] version [3.5.0] is enabled.
    2012-08-01 03:35:33 [INFO] [mcMMO] Enabling mcMMO v1.3.06-b713
    2012-08-01 03:35:33 [INFO] [mcMMO] Loading mcMMO config.yml File...
    2012-08-01 03:35:33 [INFO] mcMMO version 1.3.06-b713 is enabled!
    2012-08-01 03:35:33 [INFO] [Lockette] Enabled link to plugin mcMMO for Groups, version 1.3.06-b713
    2012-08-01 03:35:33 [INFO] [MobDisguise] Enabling MobDisguise v1.81
    2012-08-01 03:35:33 [INFO] [MobDisguise] by desmin88 version 1.81 enabled.
    2012-08-01 03:35:33 [INFO] [ButtonWarp] Enabling ButtonWarp v1.8.1
    2012-08-01 03:35:33 [INFO] ButtonWarp 1.8.1 is enabled!
    2012-08-01 03:35:33 [INFO] [Essentials] Enabling Essentials v2.9.1
    2012-08-01 03:35:33 [INFO] [Vault][Economy] Essentials Economy hooked.
    2012-08-01 03:35:33 [INFO] Essentials: Using GroupManager based permissions.
    2012-08-01 03:35:33 [INFO] [Jobs] Enabling Jobs v2.8.3
    2012-08-01 03:35:34 [INFO] [Jobs] [Jobs] Successfully linked with Vault.
    2012-08-01 03:35:34 [INFO] [Jobs] Plugin has been enabled succesfully.
    2012-08-01 03:35:34 [INFO] [EssentialsProtect] Enabling EssentialsProtect v2.9.1
    2012-08-01 03:35:34 [INFO] Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? true; trace: 10]
    2012-08-01 03:35:34 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn v2.9.1
    2012-08-01 03:35:34 [INFO] [ChestShop] Enabling ChestShop v3.39
    2012-08-01 03:35:34 [INFO] [ChestShop] Lockette version 1.6 loaded.
    2012-08-01 03:35:34 [INFO] [ChestShop] WorldGuard version 599-a7d1988 loaded.
    2012-08-01 03:35:34 [INFO] [ChestShop] Vault loaded using economy plugin Essentials Economy
    2012-08-01 03:35:34 [SEVERE] [ChestShop] WARNING! Your spawn-radius in bukkit.yml isn't set to 0! You won't be able to sell to shops built near spawn!
    2012-08-01 03:35:34 [INFO] [EssentialsChat] Enabling EssentialsChat v2.9.1
    2012-08-01 03:35:34 [INFO] [Factions] Enabling Factions v1.6.6b
    2012-08-01 03:35:34 [INFO] [Factions v1.6.6b] === ENABLE START ===
    2012-08-01 03:35:34 [INFO] [Factions v1.6.6b] Loading board from disk
    2012-08-01 03:35:34 [INFO] [Factions v1.6.6b] Found and will integrate chat with EssentialsChat v2.9.1
    2012-08-01 03:35:34 [INFO] [Factions v1.6.6b] Economy integration through Vault plugin successful.
    2012-08-01 03:35:34 [INFO] [Factions v1.6.6b] NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
    2012-08-01 03:35:34 [INFO] [Factions v1.6.6b] === ENABLE DONE (Took 83ms) ===
    2012-08-01 03:35:34 [INFO] [Lockette] Enabled link to plugin Factions for Groups, version 1.6.6b
    2012-08-01 03:35:34 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2012-08-01 03:35:34 [INFO] Done (3.762s)! For help, type "help" or "?"
    2012-08-01 03:35:34 [INFO] GroupManager - INFO - Bukkit Permissions Updated!
    
     
  20. Offline

    Necrodoom

    update essentials and groupmanager to 2.9.2, replace second file with this: http://pastie.org/4370039 retest

    EDIT: you never inherited globalgroups in second file..
     
  21. Offline

    johnstar75

    Guys thanks to all of your help, IT WORKS, well almost. I cannot get worldguard perms to work for my co-owner
    I tried using
    - wordguard.'*' doesnt work
    - worldguard.* doesnt work
    Any ideas
     
  22. Offline

    jacklin213

    johnstar75 have u downloaded world edit? its a world guard dependcy (if u dont want to use world guard put worldedit.jar in the same folder as your craftbukkit.jar)
     
  23. Offline

    johnstar75

    I use both
     
  24. Offline

    Necrodoom

    repaste your file as it is now, got lost with all these links
     
  25. Offline

    johnstar75

  26. Offline

    Necrodoom

  27. Offline

    johnstar75

  28. Offline

    Necrodoom

    just run what i pasted, you had much more errors than superadmin. fixed inheritance, permission closing, and globalgroup misspelling aswell.
     
  29. Offline

    johnstar75

    Thanks for everyones patients and help
     
Thread Status:
Not open for further replies.

Share This Page