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

    DigitalUn1corn

    I'm having the same issue, anyone know how to fix it?
     
  3. Offline

    Thanks4trying

    i am having a issue where guests get all the commands. i recently just switched to groupmanager and ess. and i dont understand it at all. Please help!
     
  4. Offline

    jor956

    Mine's fixed now, apparently I just typed something wrong :p
     
  5. Offline

    imaxorz

    In case anyone else is having an issues where no one is able to lose life.

    No one was getting any kind of damage in my server and I could not figure out why. So I started a server with all same plug-in on my computer and removed plug ins one by one.

    I traced the problem down to EssentialsProtect. When removed I was able to get damaged, when put back again I couldn't get hurt.

    So then I started changing values in the config for the EssentialsProtection section and the culprit is tnt-explosion:

    If tnt-explosion: is set to true no one on the server is able to suffer any damage at all, fall, mob, ect.
    if tnt-explosion: is set to false everyone can get hurt as usual.
     
  6. I have the same Problem with the Spawnpoint.
    I cant get out of this so i die, spawn and die again and again.

    A solution would be very nice because i dont have any homes or something like that now because GroupManager didnt worked and all is a big dumb of crap now. gwah -_-
     
  7. Offline

    Mzullos5

    I've having a similar issue, I have the group manager working but all groups have access to all commands.
     
  8. Offline

    dwatring

    Guests cant use the /home and /sethome even though I gave them the permission... Help?
     
  9. Offline

    Runelynx

    does it take absolutely forever for the server to load chunks when you guys /warp or /tp ? it does for me... its loading the chunks from off to the side instead of starting under the player. Its really awful!!

    And to make things worse, to correct it, people log out and back in to m,ake it load the central chunks first, which then lags things up even more.

    Have I set something up wrong, or can EssentialsTele + Warp be fixed?
     
  10. Offline

    Varriount

    Its notch's new file format. The server core is the problem. When notch updated the game, to the new MCRegion format, chunk load time slowed down considerably
     
  11. I've seen this Problem with Zan's Minimap wich slows down the Chunk loading alot.

    Edit: No one with a Solution for the Spawn? =/
     
  12. Offline

    icuttu

    I recently installed the main essentials jar, along with essentialsgod. I only added 3 permissions so far, to test if they would actually work. Only one command is working; 'essentials.help'

    'essentials.god' & 'essentials.heal' are not working. I don't even get an error message.
    When I load up my server, there are no errors, despite this, these two commands to do work at all.

    My permissions config file looks like this:
    http://pastebin.com/2Eu8CZh0
    Can anyone help me?​
     
  13. Offline

    Alienware777

    Hey Zenexer, on my server I have it set to wait 10 seconds from when someone uses /home and /spawn before it teleports them. When an admin tp's to someone though, its set to be instant. That works nice and dandy, until they go to tp someone to them. Then they have to wait the 10 seconds, and they also can't move or the teleport is canceled. Can you make it so that if someone who can tp instantly does a tphere, it will go instantly as well? Thanks [​IMG]
     
  14. Offline

    Connor

    Is anyone experiencing problems with the kits in essentials? I have the latest essentials build and craftbukkit 447. When I enter and save new kit data, the server loads without a problem. However when I try the /kit [kitname] command, it says that the kit either doesn't exist or isn't defined properly in the config. I'm using Notepad++ to edit my information. This is what my setup looks like (Taken from my current config):

    Code:
    # Note: All items MUST be followed by a quantity!
    # Times are measured in seconds.
    kits:
      Tools:
        delay: 0
        items:
          - 276 1
          - 277 1
          - 278 1
          - 279 1
          - 293 1
      Armour:
        delay: 0
        items:
          - 310 1
          - 311 1
          - 312 1
          - 313 1
    
    ############################################################
    # +------------------------------------------------------+ #
    # |                  EssentialsHome                    | #
    # +------------------------------------------------------+ #
    ############################################################
     
  15. Offline

    TravisV10

    banned players can log back in!

    -.- please fix this
     
  16. Offline

    sawyer

    where do i download it ??
     
  17. Offline

    SquallSeeD31

    The problem is in Essentials' core, line 106, inside onEnable:
    Code:
        this.spawn = new Spawn(getServer(), folder);
    This appears one line *before* the reload() method, which sets the "folder" variable to the data folder, so at this point in the plugin, "folder" hasn't been initialized, and as a result, the Spawn class (which, as you might imagine, controls the spawn point) doesn't get the data folder, so spawn.yml is never created. Ostensibly this should all have worked fine before TSLPC was removed. Now it should all work fine if that one line gets moved down a line; that's why all the other addons work fine.

    If you then look in the Spawn class, it attempts to read the spawn location from spawn.yml (which remember, doesn't exist at this point), and defaults to 0,128,0,0,0 if nothing is found.

    EDIT: This has been fixed as of the latest Essentials.jar that I was able to download off their site.
     
    LudicrousYoshi likes this.
  18. Offline

    Basset

    Ban does not work or banip, they just keep logging back in.
     
  19. Offline

    Erbros

    I had a typo in my Permissions plugin, so it was not loaded, but Essentials Chat should not be instantly killing people that login anyways. Perhaps the chat plugin should check if Permissions is loaded, and eventually disable itself if it can't find it after a while?

    Code:
    2011-02-27 15:14:40 [INFO] theUserThatIsLoggingIn [/204.14.5x.xxx:57980] logged in with entity id 2552
    2011-02-27 15:14:41 [SEVERE] java.lang.NullPointerException
    2011-02-27 15:14:41 [SEVERE]    at com.earth2me.essentials.chat.EssentialsChatWorker.updateDisplayName(EssentialsChatWorker.java:33)
    2011-02-27 15:14:41 [SEVERE]    at com.earth2me.essentials.chat.EssentialsChatWorker.onPlayerJoin(EssentialsChatWorker.java:28)
    2011-02-27 15:14:41 [SEVERE]    at com.earth2me.essentials.chat.EssentialsChatPlayerListener.onPlayerJoin(EssentialsChatPlayerListener.java:27)
    2011-02-27 15:14:41 [SEVERE]    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:130)
    2011-02-27 15:14:41 [SEVERE]    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:59)
    2011-02-27 15:14:41 [SEVERE]    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:225)
    2011-02-27 15:14:41 [SEVERE]    at net.minecraft.server.ServerConfigurationManager.a(ServerConfigurationManager.java:97)
    2011-02-27 15:14:41 [SEVERE]    at net.minecraft.server.NetLoginHandler.b(NetLoginHandler.java:87)
    2011-02-27 15:14:41 [SEVERE]    at net.minecraft.server.NetLoginHandler.a(NetLoginHandler.java:27)
    2011-02-27 15:14:41 [SEVERE]    at net.minecraft.server.NetworkListenThread.a(SourceFile:87)
    2011-02-27 15:14:41 [SEVERE]    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:338)
    2011-02-27 15:14:41 [SEVERE]    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:253)
    2011-02-27 15:14:41 [SEVERE]    at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    
     
  20. Offline

    tremor

    I have worldguard so I've left EssentialsGod.jar out of my installation... for some reason as an admin i'm permanently in godmode now no matter what... worldguard issue or essentials issue?

    Bans still not working either, becoming a real problem.
     
  21. Offline

    NightStripes

    Has anyone else had trouble with /setwarp or /setspawn offsetting the placement one block to the south west? For example, if I stand on block X and /setspawn, then type /spawn, I end up at Z:

    [_][_][_]
    [_][X][_]
    [Z][_][_]

    I'm using Essentials 236 but it's happened since 188.
     
  22. Offline

    Dinobonoid


    I had the same problem too. When I set it at X, I spawn at Z. so what I did was I made it like this.

    [_][_][X]
    [_][Z][_]
    [_][_][_]

    When I stand on X like that, I'll spawn on Z and it'll be how I want.
    Tell me if this helped. ^^
     
  23. Offline

    Cosmic Break

    can anyone get me a build before 236?
     
  24. Offline

    ledhead900

    I see the move is taking place then eh... well I will help whenever I can I plan to update my server 2moro to the CB 440+ revisions as well as plugins and see how it goes I guess for MC 1.3, chances are you or your staff we see me login on IRC sometime 2moro.
     
  25. Offline

    Zenexer

    @ledhead900 Is that a threat? :p I'll be sure to say hello, lol
     
  26. Offline

    Raek

    I must say this is a great plugin, from day one I have always loved the functonality of this one, and now with all it's different upgrades to how it works and what you can do excite me and my users no end!

    Yes setting this puppy up is a little bit of a ball ache, but very very worth it in the end.

    With all the setup I have had to go through there is one I still can't seem to figure out myself and it's to do with the [Protection] Signs, This might be due to me using CB v440 (recommended non-dev build) or maybe I need to have some kind of AntiGrief plugin installed?

    The problem I am having is that people without OP and set to a group I have made and I set the sign next to the chest with [Protection] and sure enough it turns the word [Protection] Blue and places my name on the bottom of the sign, all the functionality is there people cannot get into my chest it is locked to them and they cannot remove the sign BUT and this is the pain I cannot figure out... they can remove the chest? thus dropping it's contence on the floor and negating the function itself.

    Just to give you a show this is my "data.yml"

    Code:
    users:
      mikeman70:
        permissions: []
        group: Miner
      noxxiee:
        permissions: []
        group: Builders
      gmcouto:
        permissions: []
        group: SemiAdmin
        info: {prefix: '&c', suffix: SemiKing}
      anjocaido:
        permissions: []
        group: Admins
        info: {prefix: '&c', suffix: King}
      zenexer:
        permissions: [essentials.god]
        group: Moderator
        info: {prefix: '&c', suffix: Mod}
      pugz209:
        permissions: []
        group: Admins
        info: {prefix: '&c', suffix: King}
    groups:
      Default:
        default: true
        permissions: [essentials.help, essentials.home, essentials.motd, essentials.sethome,
          essentials.spawn]
        inheritance: []
        info: {prefix: '', build: false, suffix: ''}
      Miner:
        default: false
        permissions: [essentials.afk, essentials.back, essentials.list, essentials.mail,
          essentials.msg, essentials.pay, essentials.sell, essentials.time]
        inheritance: [default]
        info: {prefix: '&6[Miner]&f', build: false, suffix: ''}
      SemiAdmin:
        default: false
        permissions: [+groupmanager.mandemote, +groupmanager.manpromote, -groupmanager.*,
          '*']
        inheritance: [moderator]
        info: {prefix: '', build: false, suffix: ''}
      Admins:
        default: false
        permissions: ['*']
        inheritance: [semiadmin]
        info: {prefix: '&4[Admin]&f', build: true, suffix: ''}
      Moderator:
        default: false
        permissions: [essentials.tp, essentials.tphere, essentials.item, essentials.give]
        inheritance: [default]
        info: {prefix: '', build: false, suffix: ''}
      Builders:
        default: false
        permissions: [essentials.afk, essentials.back, essentials.list, essentials.mail,
          essentials.msg, essentials.pay, essentials.sell, essentials.time]
        inheritance: [default]
        info: {prefix: '&5[Builder]&f', build: false, suffix: ''}
    plugin:
      permissions: {system: default}
    
    As you can see I tested this with Mikeman70 who is in the Miner group and he could remove my chest and I'm not only set to OP but I am an Admin to the GroupManager.

    Any ideas?

    Thanks in advance.
     
  27. Anyone else having problems with setting the spawn? When I set it, it will not spawn me there, but will spawn me at the default spawn.
     
  28. Offline

    Lewis

    Same issue here, however when I type /spawn it goes to the spawn. Anybody new when they login will go to default spawn, however when they die/type /spawn they go to the spawn I set.

    Odd.
     
  29. Tried this, when I /kill myself, I spawn at the spawn I set with /setspawn. But when I first join the server I will spawn at the spawn the world creates when first made.
     
  30. Offline

    Connor

    Is anyone experiencing problems with the kits in essentials? I have the latest essentials build and craftbukkit 447. When I enter and save new kit data, the server loads without a problem. However when I try the /kit [kitname] command, it says that the kit either doesn't exist or isn't defined properly in the config. I'm using Notepad++ to edit my information. This is what my setup looks like (Taken from my current config):

    Code:
    # Note: All items MUST be followed by a quantity!
    # Times are measured in seconds.
    kits:
      Tools:
        delay: 0
        items:
          - 276 1
          - 277 1
          - 278 1
          - 279 1
          - 293 1
      Armour:
        delay: 0
        items:
          - 310 1
          - 311 1
          - 312 1
          - 313 1
    
    ############################################################
    # +------------------------------------------------------+ #
    # |                  EssentialsHome                    | #
    # +------------------------------------------------------+ #
    ############################################################
     
  31. Offline

    Nuinbot

    I get this when loading Essentials. The error only comes from EssentialsTele, the others work fine. Any idea what is wrong?

    Code:
    16:47:39 [INFO] Starting minecraft server version Beta 1.3
    16:47:39 [INFO] Loading properties
    16:47:39 [INFO] Starting Minecraft server on *:25565
    16:47:39 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-472-
    g53b258e-b456jnks (MC: 1.3)
    16:47:39 [INFO] Preparing level "Nuin's World!"
    16:47:39 [INFO] Preparing start region
    16:47:40 [INFO] WorldGuard loaded.
    16:47:40 [INFO] BorderGuard Lite (Round) version 2.1 is enabled!
    16:47:40 [INFO] CraftBookCommon 3.0-alpha1 enabled.
    16:47:40 [INFO] CraftBookCircuits 3.0-alpha1 enabled.
    16:47:40 [INFO] CraftBookMechanisms 3.0-alpha1 enabled.
    16:47:40 [INFO] CraftBookVehicles 3.0-alpha1 enabled.
    16:47:40 [INFO] ÂșeLoaded Essentials build 243 maintained by Zenexer, ementalo, A
    elux, and Brettflan
    16:47:40 [INFO] Loaded EssentialsChat build 243 by Zenexer, ementalo, Aelux, and
     Brettflan
    16:47:40 [INFO] Loaded EssentialsHome build 243 by Zenexer, ementalo, Aelux, and
     Brettflan
    16:47:40 [INFO] Loaded EssentialsSpawn build 243 maintained by Zenexer, ementalo
    , Aelux, and Brettflan
    16:47:40 [INFO] Loaded EssentialsTele build 243 by Zenexer, ementalo, Aelux, and
     Brettflan
    16:47:40 [SEVERE] PLAYER_COMMAND (Is it up to date?)
    java.lang.NoSuchFieldError: PLAYER_COMMAND
            at net.weasel.HelpCenter.HelpCenter.initHelpCenter(HelpCenter.java:114)
            at net.weasel.HelpCenter.HelpCenter.onEnable(HelpCenter.java:37)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:117)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:414)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:187)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:80)
            at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:61)
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
            at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    16:47:40 [INFO] Done (0.123s)! For help, type "help" or "?"
     
Thread Status:
Not open for further replies.

Share This Page