Inactive [MECH] DropChest v0.8.3 - Chests that absorb dropped items [1.1-R3]

Discussion in 'Inactive/Unsupported Plugins' started by narrowtux, Feb 9, 2011.

  1. Offline

    narrowtux

    DropChest - Chests that absorb dropped items
    Version 0.8.2
    [​IMG]
    Important! When migrating from 0.6 to any above version, you have to move the DropChest.txt from server/plugins/DropChest.txt to server/plugins/DropChest/DropChest.txt
    This is because I have to follow the Bukkit plugin saves guidelines.

    This plugin automatically adds dropped items to near chests. That is very useful for automatic farming and monster traps that gather loot.
    Features
    • automatically suck dropped items that are near a chest to that chest
    • customizable warning if the chest is nearly full
    • list your DropChests and watch how much percent is still free
    • Permissions
    • Filter
    • Storage Minecart support
    • Dispenser and Furnace support
    • Item information
    • Chest protection
    • Automatic Owner tracking
    • Double-Chest support
    Download

    DropChest.jar
    GitHub Project (Source Download)
    Download development version

    Donate, if you want to support me ;)

    Video



    Usage
    Commands
    Show commands (open)

    To add a chest to the "watchlist", type
    Code:
    /dropchest add [radius]
    After that, rightclick the chest that you want to add. Radius is the radius in which the Chest should suck items. Default value is 2.

    To remove a chest from the "watchlist", just type
    Code:
    /dropchest remove chestid
    where chestid is the number of the chest that you get when you call /dropchest list

    You can list the chests that are on the watchlist via
    Code:
    /dropchest list
    You can adjust the radius of a chest via
    Code:
    /dropchest setradius chestid radius
    You can check which id and radius the Chest in front of you has:
    Code:
    /dropchest which
    after that, rightclick on the Chest to get information about it.
    If you are sitting in front of the console, or don't want to rightclick, you can use
    Code:
    /dropchest info chest
    It will generate the same output as /dc which.

    You can teleport to a chest via
    Code:
    /dropchest tp chestid
    where chestid is the ID of the dropchest

    You can set the name of a DropChest via
    Code:
    /dropchest setname {chestid} {newname}
    The name is displayed in chest is full warnings, and in the DropChest list!

    If you migrate from 0.6 to 0.7, you can set the owner of a dropchest by typing:
    Code:
    /dropchest setowner {chest} {newowner}
    You can protect a chest by typing
    Code:
    /dropchest protect {chest} {on|off}
    You can always use /dc instead of /dropchest if you are lazy.

    Another very helpful command is /dcitem:
    Code:
    /dcitem [NAME|id]
    
    This can be used to obtain the name of an item by it's id or get an id of the item-name.
    This doesn't work with all names, though.

    Use the new command /chestinfo {name|id} to get info about what's inside the chest.
    Omit the argument and rightclick on any chest to get info about that.
    Example:
    Code:
    >/dcitem 4
    4 is COBBLESTONE
    >/dcitem cobblestone
    COBBLESTONE is 4
    

    Show Configuration (open)

    You can configure DropChest by pasting the contents of the following block to plugins/DropChest/dropchest.cfg
    Code:
    #Should the dropchest drop items when it gets a redstone signal?
    droponredstone=true
    #How long should the dropchest not suck items after it has dropped them
    waitafterdrop=10
    #Should users be able to protect chests like in LWC?
    usercanprotectchest=true
    #Which is the default radius if you omit the radius argument in /dropchest add?
    defaultradius=2
    #Which should be the maximum radius for players that have not dropchest.setBig and aren't ops?
    fallbackradius=15
    #At which fill-status should the chest warn you?
    warnfillstatus=90
    #Which message should appear as warning?
    #You can use this variables (example):
    # $owner : the owner of the chest (narrowtux)
    # $name  : the name of the chest (my superduper mobtower chest/#42)
    # $fill  : The fill status, in percent (81)
    warnmessage=$owner, your chest $name is nearly full($fill%).
    

    Filter / Storage Minecarts
    Show Filter/Storage Minecarts (open)

    Filters have changed in version 0.6. There are now 3 seperate filters that are for sucking items, pulling items from passing minecarts and pushing them to passing minecarts.
    You can now set the filters by either using commands or using the interactive mode. Let me show you the interactive mode first:
    to begin, type
    Code:
    /dropchest filter {suck|push|pull}
    Note: choose one of suck, push or pull, please (for example /dropchest filter suck)
    Then you will enter the interactive mode. In this mode you can edit the selected filter by hitting the chest with the desired item in your hand.
    To edit another filter, type the above command again.
    To finish your filter, type
    Code:
    /dropchest filter finish
    Commands mode:
    Code:
    /dropchest filter {suck|push|pull} {chestid} {itemid|itemtype|clear}
    Call the filter-command like above, as second argument, use the chest-ID, and as third argument, either type the item-ID, the name of the item (as they appear here: org.bukkit.Material) or type clear to clear this filter.
    Please note! The suck filter acts different from the Pull/Push-Filter when it's empty. When the suck-filter is empty, the chest will suck every item. When a Pull/Push filter is empty, it won't take or give any items to a passing minecart.

    Show Permissions nodes (open)

    You can use these nodes:
    • dropchest - To get the right to use DropChest
    • dropchest.create - To call /dropchest add
    • dropchest.remove - To call /dropchest remove chestid
    • dropchest.radius.set - To set the radius of a Chest to something else than 2
    • dropchest.radius.setBig - To have unlimited radius
    • dropchest.which - To have access to the /dropchest which command
    • dropchest.teleport - To be able to teleport via /dropchest tp chestid
    • dropchest.filter - To set or reset filters
    • dropchest.filter.set - To set filters in interactive mode
    • dropchest.filter.reset - To reset filters in interactive mode (click with nothing in hand)
    • dropchest.list - To have access to /dc list and /dc info
    • dropchest.destroy - To be able to break a dropchest without removing it before.
    • dropchest.protect - To be able to protect a chest
    • dropchest.moderator - To be able to modify a dropchests properties even if you're not the owner. Also, ops and the console can do that.
    You can use these variables:

    • dropchestmaxradius - To adjust the maximum radius for a group or a user
    How to use variables:

    Code:
    users:
      narrowtux:
        info:
          dropchestmaxradius: 1000
    
    This is just an example and this also works with groups!

    Changelog
    Version 0.8.2
    • Fixed the loading issue.
    Version 0.8.1
    • Supports SuperPermissions (when no Permissions plugin was found)
    • Fixed show stopping bugs.
    • Use YAML as persistence storage. You can find the new file at plugins/DropChest/dropchests.yml
    Show Changelog (open)

    Version 0.8
    • Performance improvements
    • Fixed a bug that caused dropchest to eat stacks in storage minecarts (thanks @Tenebria )
    • Implemented per-chest delay (thanks @Gibbers )
    • Made /dc list per player. Use /dc list {pagenum} all to see all showcases (works without all in the console)
    Version 0.7.9
    • Fixed bug where items were lost when a chest/minecart was full on pushing/pulling
    • Little code cleanup
    Version 0.7.8
    • Fixed a bug where, for example, if you had several ItemStacks of 1 block each, only 1 ItemStack would be pulled to the chest or pushed to the MineCart, the others would be deleted.
    • Minecarts can now be over/under DropChests to be handled
    Thanks M-Type!
    Version 0.7.7
    • Double Chest support
    Version 0.7.6

    • Fixed some issues when using a Permissions implementation that is not complete (in this case EssentialsGroupManager as reported by @Kartus )
    Version 0.7.5

    • you can add all items to a filter by using the keyword "all" instead of the material-type
    • you can obtain info about a dropchest without having to rightclick (/dc info {chest}). However, the output is the same as when you would have called /dc which
    Version 0.7.4

    • warnfillstatus=-1 now disables the "chest is full"-warning
    Version 0.7.3

    • Fixed a bug that came with a new Bukkit release
    Version 0.7.2

    • /dc which now says something again, thanks to @Liger_XT5.
    Version 0.7.1

    • Removed debug messages :D
    Version 0.7

    • Configuration added
    • DropChests can drop their contents when a redstone input is present
    • Now, only the owner of a dropchest can adjust it's properties
    • The owner of a dropchest can protect the chest. So other players can't open it.
    • Customizable warning message and fill threshold.
    • Warnings will now be displayed to the owner of a chest, if he is online.
    • And made compatible to Minecraft 1.5_01. Older versions of craftbukkit won't work!
    Version 0.6.9

    • /dc which even more fancy
    • Removed debug message reported by @Reterg
    • Implemented the /item command which tells you what item this id is or vice-versa.
    Version 0.6.8

    • /dc which now looks fancy and shows the filtered items, too.
    Version 0.6.7

    • Added dropchest-id to the /dc which output.
    Version 0.6.6

    • Fixed NullPointerException on startup
    Version 0.6.5

    • Fixed /dc which
    • Refactored some code
    • You can now also use names of dropchests in the commands.
    Version 0.6.4

    • Fixed chunk unload that results in crash
    Version 0.6.3

    • Updated to bukkit-version 602
    • Tried to fix Thread-Exceptions. Breaking DropChests still not fixed, maybe happens later this day ;)
    Version 0.6.2

    • Permissions not required anymore.
    • Thread-Safe. No more ConcurrentModificationCheck Exceptions!
    Version 0.6.1

    • Fixed loading issues. You have to move your old DropChest.txt to the folder DropChest/ in your plugin directory!
    Version 0.6

    • Seperate filters for sucking, pushing to minecarts, pulling from minecarts
    • Multiple users can add dropchests at the same time now!
    • Added a name to the DropChests
    • Fixed Minecraft 1.3-Bug (method net.minecraft.server.Entity.q() was not available any more)
    I'm working on extended furnace handling, that fuels automatically go to the fuel slot and so on. This is still buggy so I didn't released it, it comes in the next version.


    Version 0.5.1
    • Multiworld works now
    • Paginated /dc list
    • Persistent DropChest IDs
    Version 0.5

    • Added support for Storage Minecarts
    • Added support for Dispensers and Furnaces
    Version 0.4.2

    • Fixed bug that Tearlow described.
    Version 0.4.1

    • Fixed loading bug when migration from versions 0.3 or below
    Version 0.4

    • Added filters.
    Version 0.3.1

    • Multiple world support
    • Since the Craftbukkit version from feb, 13 at 12:00 CET, Chests that are destroyed by Players are rebuilt
    • Worked around NullPointerException when Permissions is not loaded properly
    • Files now hosted on github ;) that non-members also can download DropChest
    Version 0.3

    • Permissions support.
    • Configure the maximum radius for each single user or group (via Permissions)
    • Fixes bug with unhandled Exception in the EntityWatcher-Timer.
    • /dropchest can be called via /dc for short
    • /dropchest without arguments just lists the commands that the user can execute, as well as his maximum radius.
    • Oh, and I corrected the Pythagoras formula for radius calculation. Shame on me...
    Version 0.2.3


    This is quite a huge bugfix update. Permissions come next ;)
    • Broken DropChests are now automatically removed from the list
    • changed package name from com.bukkit.narrowtux.DropChest to com.narrowtux.DropChest to prevent not loading issues coming up next monday
    • Added command "which", that allows you to see which id a chest has and if it is already a dropchest.
    • Linked against the most recent versions of Bukkit and Craftbukkit. The Bukkit guys have fixed a lot of bugs that affected this plugin. In my tests, there were no more nullPointerExceptions or similar errors. Also, DropChest now also works on very fresh placed Chests
    • And a currently constant maximum radius of 20 blocks
    Version 0.2.2

    • DropChest are now removed when you call /dropchest remove chestid
    • DropChest now have a minimum radius of 2
    • Fixed some saving issues
    Version 0.2.1

    • Fixed a problem where the radius has not been saved
    Version 0.2

    • Added a radius
    Version 0.1

    • First Release of DropChest
     
  2. Offline

    7eggert

    I switched to PermissionsBukkit and SuperpermsBridge. It works as expected., 100 % compatible as far as I can see.

    Maybe you can tell more about your problems?
     
  3. Offline

    Shilofax

    Cant seem to get this to work, I've plopped it into the plugin folder and i get "An Internal Error has occured when trying to perform this command" The only command that works is the help command

    Code:
    25.08 17:29:20 [Server] INFO     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    25.08 17:29:20 [Server] INFO     at com.narrowtux.DropChest.DropChest.onCommand(DropChest.java:292)
    25.08 17:29:20 [Server] INFO     at java.lang.Integer.valueOf(Integer.java:582)
    25.08 17:29:20 [Server] INFO     at java.lang.Integer.parseInt(Integer.java:492)
    25.08 17:29:20 [Server] INFO     at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    25.08 17:29:20 [Server] INFO Caused by: java.lang.NumberFormatException: For input string: "radius=2"
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:33)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:670)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:677)
    25.08 17:29:20 [Server] INFO     at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:713)
    25.08 17:29:20 [Server] INFO     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:320)
    25.08 17:29:20 [Server] INFO     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:129)
    25.08 17:29:20 [Server] INFO     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
    25.08 17:29:20 [Server] INFO org.bukkit.command.CommandException: Unhandled exception executing command 'dropchest' in plugin DropChest v0.8.1
     
  4. Offline

    Exor

    I am having this problem and I have the following plugins installed:
    AdminsCanFly
    CraftBukkitUpToDate
    DropChest
    ItemKill
    SalesMan FastMining
    Stargate
    WorldEdit
    dynmap

    These plugins are installed in my bukkit server and I cannot do anything with DropChest. I kept getting this message when I tried to use DropChest. Note: I never had any permission plugins installed.

    Thanks,
    Exor
     
  5. Offline

    narrowtux

    That's because it uses Bukkits built in permissions now. I didn't setup defaults yet.
     
  6. Offline

    Simanova

    With PermissionBukkit it was not possible to unlock:
    • "/online"
    • "/list"
    • "/time day|night" was changing the personal time, not the server time
    • some Towny (v0.74) commands
    • all CreatureBox (newest) commands
    • some Movecraft (v0.69)commands
    • full HiddenDoor (v0.2) funcionality
    • some Fishpeople (v1.6) functionality
     
  7. Offline

    7eggert

    For the default commands, you can use:
    craftbukkit.command.time: true (see http://wiki.bukkit.org/Vanilla_permissions)

    For plugins expecting Permissions n.x, you can use e.g.:
    superpermbridge.worldedit.selection.*: true
    (Off cause you'll need the bridge plugin)
     
  8. Offline

    Aox

    Just added this plugin to my IC/BC bukkit server. Works amazingly well until I restart the server, then all dc boxes are in fail mode. If I can get that bug figured out, this makes some amazing long distance buildcraft science possible with the Traincart mod.

    Any ideas why this would be happening to so many of us, Mr. Awesome Plugin Developer of Awesomeness?

    -Aox
     
  9. Offline

    narrowtux

    seems that is a major issue - fixing...
     
  10. Offline

    novek

    When a player don't entered the DropChest Commands right or only look with /dc for the commands. It appears the command-list, followed with this message:
    [​IMG]

    Everytimes this happens... in our console we can read following message:
    Code:
    >
    16:18:55 [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'dropchest' in plugin DropChest v0.8.1
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
            at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:129)
            at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:352)
            at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:737)
            at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:701)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:694)
            at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:33)
            at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:89)
            at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:436)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:454)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:363)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    Caused by: java.lang.UnsupportedOperationException: Unsupported operation
            at de.bananaco.permissions.PermissionBridge.getUserPermissionInteger(PermissionBridge.java:132)
            at com.narrowtux.DropChest.DropChest.getMaximumRadius(DropChest.java:759)
            at com.narrowtux.DropChest.DropChest.onCommand(DropChest.java:667)
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
            ... 13 more
    DropBox works perfect, if no one wrote /dc or using the DropChest-Commands wrong. But the Failure-Notification in our log is annoying.
     
  11. Offline

    narrowtux

    Found the issue, fixing ATM.

    Release v0.8.2
    • Fixed the loading issue.

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

    Aox

    Testing now.

    -Aox

    Ok, my current issues with 8.2 -

    Chests still not loading at startup. I get 1 chest loaded with info, but it doesn't show up in the /dc list. Have to go re-setup chests at server restart.

    Errors in console at startup: Here are my console errors:

    Show Spoiler

    10:54:05 [INFO] File C:\Users\rjansen\Desktop\Minecraft - Aoxtopia\plugins\DropChest\dropchest.cfg not found.
    10:54:05 [WARNING] Player Aoxmodeus not found.
    10:54:05 [SEVERE] Error occurred while enabling DropChest v0.8 (Is it up to date?): null
    java.lang.NullPointerException
    at com.narrowtux.DropChest.DropChest.addChest(DropChest.java:103)
    at com.narrowtux.DropChest.DropChest.load(DropChest.java:154)
    at com.narrowtux.DropChest.DropChest.onEnable(DropChest.java:94)
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:885)
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:278)
    at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:178)
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:161)
    at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:289)
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:276)
    at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:152)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:340)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)


    /dc command by itselfgives onscreen "internal server error" warning in the client, and the following error in the console. That being said, it all works, aside from the following error message

    Show Spoiler

    10:54:22 [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'dc' in plugin DropChest v0.8
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:129)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:352)
    at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:737)
    at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:701)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:694)
    at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:33)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:89)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:460)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:369)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    Caused by: java.lang.UnsupportedOperationException: Unsupported operation
    at com.platymuus.bukkit.permcompat.PermissionHandler.getUserPermissionInteger(PermissionHandler.java:139)
    at com.narrowtux.DropChest.DropChest.getMaximumRadius(DropChest.java:739)
    at com.narrowtux.DropChest.DropChest.onCommand(DropChest.java:647)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    ... 12 more


    If you can eliminate the restarting dropchests not working bug, lunch is on me today, narrowtux.

    -Aox

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

    narrowtux

    10:54:05 [SEVERE] Error occurred while enabling DropChest v0.8 (Is it up to date?): null
    this is DropChest v0.8, update to latest version!
    The other one is still to be fixed.

    Release v0.8.3
    • Fixed permissions issues!

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

    Aox

    ??? I'm pulling it down from your original post? Checking now.
     
  15. Offline

    narrowtux

    Try download again, I discovered an issue with my download script that let users download older versions because of stupid browsers or kind of that :D
     
  16. Offline

    Aox

    Yes... My fault for using IE on the server... Freakin caching... All load errors are now gone... logging in to check restart persistence now!!!

    -Aox
     
  17. Offline

    narrowtux

    Y U NO USE LINUX?
     
  18. Offline

    Aox

    I can't seem to reproduce any of my errors, and dropchests are LOADING AT STARTUP!

    WOOT!!!

    narrowtux, I think I love you, in a very manly, geekly sort of fashion that includes none of the backdoor lovin.

    Lunch is on me, my friend!

    -Aox

    Sigh.... because I'm a complete Microsoft whore....

    -Aox

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

    chalenged

    i'm really annoyed. I dont use permissions because i don't feel like setting it all up. I am an op on my server with this mod installed. I use lwc if that matters. But it says "you may not use dropchest. Please ask an operator to enable this awesome plugin for you." whenever i try to use dropchest.
     
  20. Offline

    narrowtux

    It should now default to true/op for the permissions when you use the Bukkit permissions system. However, if it can find a Permissions system (the original one, not the bukkit), it'll use that and of course it won't work for your directly.
     
  21. Offline

    novek

    New error found... i think i found the command what starting this error-loop.
    After a player wrote "/dc filters pull" (i know it's wrong) the bukkit-console spams following error-message in a endless loop.

    Code:
    2011-08-27 23:34:05 [SEVERE] Could not pass event VEHICLE_MOVE to DropChest
    java.lang.NullPointerException
        at com.narrowtux.DropChest.DropChestItem.minecartAction(DropChestItem.java:492)
        at com.narrowtux.DropChest.DropChestVehicleListener.onVehicleMove(DropChestVehicleListener.java:35)
        at org.bukkit.plugin.java.JavaPluginLoader$81.execute(JavaPluginLoader.java:811)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:338)
        at net.minecraft.server.EntityMinecart.m_(EntityMinecart.java:564)
        at net.minecraft.server.World.entityJoinedWorld(World.java:1212)
        at net.minecraft.server.WorldServer.entityJoinedWorld(WorldServer.java:48)
        at net.minecraft.server.World.playerJoinedWorld(World.java:1194)
        at net.minecraft.server.World.cleanUp(World.java:1110)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:450)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:363)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    I hope you can fix it. Our players loving your plugin.
     
  22. Offline

    dragoniil

    u can add in configuration limit for chests? ex all players can make max 6 dropchest
     
  23. Offline

    lipe123

    Unable to get the "suck" filter to do its job

    I tried using the commands and interactive modes, both times when i use /dc which it shows that only 3 items will be sucked "bone, suplur, feather" but the chest still absorbs everything near it.

    Could you list the commands seq needed to make a chest ONLY take one item, for example sulphur.
     
  24. Offline

    DirectorAnna

    I have the same problem, however I don't use any Permissions system as I only have a small server. You say it defaults to the ops, but not even I can use any dropchest commands. What must I correct in order for us to use this Awesome plugin?
     
  25. Offline

    skore87

    Now that the '/dc list' command shows only the chests of the user, is there any plan for an admin interface? Possibly searching a user, or criteria?
     
  26. Offline

    narrowtux

    you can show all chests with /dc list [page] all
     
  27. Offline

    skore87

    Well yeah, but searching a player?
     
  28. Offline

    Skyline1989

    I need the old Version 0.7.6 or you can help me, i got the same permissions problem as above^^
    i'm OP and can't use the plugin....wtf.....
     
  29. Offline

    skore87

    Occasionally, I've been finding my DC chests being removed. No idea why, using latest version.
     
  30. Offline

    Akamai

    I have to third the small servers permissions problem, I'm an OP and I can't use it. :/

     
  31. Offline

    Raycrash

    When using dropchest, logblock counts all dropped items as mine.....
    could you edit the event so that the items dropped count as the ones who actually drop them ? and not just as mine ?

    Geiles Plugin, danke ;)
     

Share This Page