Couple Plugin help.

Discussion in 'Bukkit Help' started by DemonCraft, Aug 22, 2012.

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

    DemonCraft

    Ever sense I've updated my server to 1.3.1+ I've had issues with some Plugins.

    First being GroupManager:
    I don't know what's wrong or if I need to re-type out the permission files because of a tab or unneeded space, but this is the error the Console gives me;
    (P.S. A normal member usually is able to do like /home, /spawn, etc...but says they don't have the permission.)

    Code:
    java.lang.NullPointerException
        at org.anjocaido.groupmanager.GMConfiguration.load(GMConfiguration.java:85)
        at org.anjocaido.groupmanager.GMConfiguration.<init>(GMConfiguration.java:38)
        at org.anjocaido.groupmanager.GroupManager.prepareConfig(GroupManager.java:314)
        at org.anjocaido.groupmanager.GroupManager.onEnable(GroupManager.java:153)
        at org.anjocaido.groupmanager.GroupManager.onEnable(GroupManager.java:85)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:365)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:381)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:265)
        at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:247)
        at net.minecraft.server.MinecraftServer.i(MinecraftServer.java:296)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:275)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:225)
        at net.minecraft.server.DedicatedServer.init(DedicatedServer.java:140)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:380)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Second being LWC:
    http://imageshack.us/photo/my-images/29/lwcerror.png/

    Third being Spout:
    I think it's just Spout it'self, not my end.
    I've read topics, but m ore information about it would be nice.

    Help to any of these questions would be nice =]
     
  2. Offline

    Necrodoom

    paste your groupmanager config.yml
     
  3. Offline

    DemonCraft

    Code:
    settings:
      config:
        opOverrides: true
        validate_toggle: true
      data:
        save:
          minutes: 15
          hours: 24
        logging:
        level: INFO
       
      mirrors:
            # Worlds listed here have their settings mirrored in their children.
            # The first element 'world' is the main worlds name
            # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
            # the same user/groups files as the parent.
            # Each child world can be configured to mirror the 'groups', 'users' or both files from it's parent.
            DeadWood:
              DeadWood_nether:
              - users
              - groups
              DeadWood_the_end:
              - users
              - groups
     
  4. Offline

    breezeyboy

    did you update the plugins or just the craftbukkit?
     
  5. Offline

    Necrodoom

    your config.yml is outdated and broken.

    Code:
     
    settings:
      config:
        # With this enabled anyone set as op has full permissions when managing GroupManager
        # The user will be able to promote players to the same group or even above.
        opOverrides: true
       
        # Default setting for 'mantoglevalidate'
        # true will cause GroupManager to attempt name matching by default.
        validate_toggle: true
       
      data:
        save:
          # How often GroupManager will save it's data back to groups and users.yml
          minutes: 10
          # Number of hours to retain backups (plugins/GroupManager/backup)
          hours: 24
         
      logging:
        # level of detail GroupManager will use when logging.
        # Acceptable entries are - ALL,CONFIG,FINE,FINER,FINEST,INFO,OFF,SEVERE,WARNING
        level: INFO
       
      mirrors:
            # Worlds listed here have their settings mirrored in their children.
            # The first element 'world' is the main worlds name
            # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
            # the same user/groups files as the parent.
            # Each child world can be configured to mirror the 'groups', 'users' or both files from it's parent.
            DeadWood:
              DeadWood_nether:
              - users
              - groups
              DeadWood_the_end:
              - users
              - groups
        # world2: (World2 would have it's own set of user and groups files)
        # world3:
        # - users (World3 would use the users.yml from world2, but it's own groups.yml)
        # world4:
        # - groups (World4 would use the groups.yml from world2, but it's own users.yml)
        # world5:
        # - world6 (this would cause world6 to mirror both files from world5)
    
    thats how it should be
     
  6. Offline

    DemonCraft

    Ahhh, thanks.
    I never thought that was the issue for GM, but I did think it was for LWC. So I deleted all the files in LWC and relaoded the Plugin to see if it was a new Config or something, but sadly no.
    Any ideas for LWC?

    Updated my Config and reloaded with that, still doesn't work.

    Code:
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:40)
        at org.anjocaido.groupmanager.GroupManager.onCommand(GroupManager.java:386)
    Caused by: java.lang.NullPointerException
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:408)
        at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:476)
        at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
        at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:583)
        at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
        at net.minecraft.server.ServerConnection.b(SourceFile:35)
        at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
        at net.minecraft.server.Packet3Chat.handle(Packet3Chat.java:44)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:807)
        at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:825)
        at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:878)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:492)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:42)
    org.bukkit.command.CommandException: Unhandled exception executing command 'manulistv' in plugin GroupManager v2.0 (2.9.3) (Phoenix)
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 28, 2016
  7. Offline

    Necrodoom

    possibly pasted config.yml wrong, try regenerate the config.yml instead, then paste startup log
     
  8. Offline

    DemonCraft

    Fixed, it's working now, but what about LWC?
    Any ideas?
     
  9. Did you update LWC?
     
  10. Offline

    Necrodoom

    i see a cut off vault/groupmanager error, are both latest?
     
  11. Offline

    DemonCraft

    Vault is at 1.12.17 and I know GM is because I just checked if it was the latest version.
     
  12. Offline

    Necrodoom

    paste the whole vault/groupmanager error, might be related
     
  13. Offline

    DemonCraft

    Huh, I guess it was GroupManager because now locking works?
     
  14. Offline

    Necrodoom

    i guess GM crash was preventing vault from hooking which LWC hooks into, thus crashing the whole chain.
     
  15. Offline

    DemonCraft

    At least everything works now, XD
    Problem solved.
    Just when I was updating Plugins I was looking for any plugin that was making New Config files and in the change log of downloading the new GM I didn't see it say it changed :/
     
  16. Offline

    Necrodoom

    your config.yml was 8 months old?

    EDIT: just 2 months, nvm.
     
  17. Offline

    DemonCraft

    The Config file from GroupManager first created at most was 2 months old.
    That's when I started using GroupManager and I started my server 3 months ago.
     
Thread Status:
Not open for further replies.

Share This Page