[UNSUPPORTED][MISC] Tombstone v1.3.6 - A deadmans chest plugin for Bukkit [1317]

Discussion in 'Inactive/Unsupported Plugins' started by Drakia, Feb 10, 2011.

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

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Tombstone - A deadman's chest plugin
    Version: 1.3.6
    CraftBukkit: 1317
    This plugin support SuperPerms. Please do not ask about setting up SuperPerms in this topic, ask here: http://forums.bukkit.org/threads/permissions-faq.25080/

    Plugin Dependencies:
    Permissions (Optional)
    LWC (2 or 3) (Optional)

    If you want help, post the output of the "version" command, and make sure you're running atleast the version specified in the topic title.
    Please post your server log when asking for help with tombstones not spawning
    Do not bother asking for help if you killed the player using anything other than basic attacks. I do not guarantee support for any plugin-based attacks or deaths such as /kill!


    =============
    Description
    =============
    Save your players' inventory from disappearing when they die.
    I used Deadmans Chest in hMod and thought it was a great plugin, so I started my own version for Bukkit.

    Download: http://thedgtl.net/bukkit/Tombstone.jar
    Source: https://github.com/TheDgtl/Tombstone

    =============
    Features
    =============
    If the player is carrying a chest when they die, place that chest and fill it with as much of their inventory as possible
    If the player is allowed, and is carrying two chests, a large chest will spawn to catch all of their inventory
    Possible for specific groups/players to be given free chests with no need to carry one with them
    Any items that won't fit in the chest will still drop to the ground!
    Supports the Permissions plugin, will default to allowing everyone to use basic tombstone if not available
    Supports LWC for chest AND sign protection if it is installed
    Configurable timeout for LWC unprotection
    Configurable timeout for destruction of tombstones, works in unloaded chunks as well
    Quickloot support, right click the sign on a tombstone to loot all items in it (Your tombstone only!)
    Place a sign on top of the chest with a configurable template
    The ability to point your compass at your tombstones!
    Supports "SuperPerms"

    =============
    Config Notes
    =============
    If you are going to be giving your players a free chest/sign, but don't want them to be able to retrieve those as extra items, you can now set the noDestroy option in the Tombstone config file.
    If you do set the noDestroy option, it is highly recommended that you set a timeout for Tombstone removal, because even once LWC is disabled the chest is still not destroyable by any means other than quicklooting it.
    With noDestroy enabled, if a player dies without a sign, then their chest will be indestructible until it is removed by Tombstone itself.
    It is not recommended to use the noDestroy option without the destroyQuickLoot option

    =============
    KNOWN BUGS
    =============
    None?

    =============
    Config
    =============
    lwcEnable - Whether to use LWC if available
    lwcRemove - Whether to remove LWC after a specific timeout
    lwcPublic - Set to true to set LWC protection to Public instead or removing
    lwcTimeout - How long to wait before disabling LWC on a tombstone (in Seconds)
    tombSign - Whether to place a sign on the tombstone
    removeTime - How long to wait before destroying a tombstone (in Seconds)
    tombRemove - Whether or not to destroy a tombstone after a timeout
    playerMessage - Whether or not to show messages to the player
    saveTombList - Whether to save a list of tombstones between server reloads
    destroyQuickLoot - Set to true to destroy the chest/sign on quickloot
    noDestroy - Set to true to disallow any player from destroying a tombstone (Other than quickloot)
    noInterfere - Set to true to stop tombstones from being created next to other chests (Items are dropped to ground instead)
    logEvents - Whether to print some "useful" information to the server terminal.
    skipBuildCheck - Set whether to skip the blockPlace check (True to bypass region protection) (Default false)

    =============
    Sign Template
    =============
    The sign template is stored in plugins/Tombstone/sign.tpl
    The following variables are able to be used in the sign template:
    {name} - The players name
    {cause} - The cause of their death, or their killers name if it was a player
    {date} - The date of their death
    {time} - The time of their death

    The sign template is 4 lines correlating to the 4 lines of the sign. The maximum length
    of a line is 15 characters. The default sign template is as follows:
    {name}
    Killed By
    {cause}
    {time}

    =============
    Permissions (Either via SuperPerms, or Permissions 2.x/3.x)
    =============
    tombstone.use - (Default) Allow the player/group to use the tombstone mod
    tombstone.freechest - Allow the player to get a chest whether they are carrying a chest or not
    tombstone.large - Allow the player to spawn a large chest if carrying two chests and if one will fit
    tombstone.lwc - (Default) Protect the placed chest if LWC is enabled
    tombstone.sign - (Default) Whether the player gets a sign on their tombstone chest
    tombstone.freesign - Allow the player to get a free sign whether they are carrying one or not.
    tombstone.quickloot - (Default) Whether to allow a player/group to quickloot by right clicking the tombstone sign.
    tombstone.admin - Allow this user to destroy other players tombstones.
    tombstone.cmd.tomblist - Allow this user to use /tomblist
    tombstone.cmd.tombfind - Allow this user to use /tombfind
    tombstone.cmd.tombreset - Allow this user to use /tombreset

    =============
    Commands
    =============
    /tomblist - List all your tombstones
    /tombfind - Gives you a direction from your current location to your tombstone. Use with /compass (Sync'd to CommandBooks /compass)
    /tombreset - Doesn't do anything.

    =============
    FAQ
    =============
    Q) Can you add support for {PluginX}?
    A) No.

    Q) Player items are being duplicated, and I'm using SlowHealth, whatsup?
    A) http://forums.bukkit.org/threads/mi...ugin-for-bukkit-1000.3923/page-18#post-550275

    =============
    Changes
    =============
    [Version 1.3.6]
    - Added 'skipBuildCheck' option
    [Version 1.3.5]
    - Fixed accidental clearing of /tomblist on quickloot
    - Added SuperPerms support
    - Do a build permission check so we don't spawn a chest in protected areas
    [Version 1.3.2]
    - Apparently LWC 3.30 had a change in API that wasn't documented, yay
    [Version 1.3.1]
    - Recompiled with LWC 3.30
    [Version 1.3.0]
    - Added sign template
    - Tombstone no longer created in void death
    - Re-enabled the compass for /tombfind

    [Version 1.2.9]
    - Fixed free double chests
    - Made freechest/freesign default to isOp() without permissions
    [Version 1.2.8]
    - Added logEvent option for debug purposes.
    - Do a 3x3 check for a block to place chest.
    [Version 1.2.7]
    - Check properly if we're placing a big chest for interference
    [Version 1.2.6]
    - Fixed issue with name length
    [Version 1.2.5]
    - Option to bail on tombstone creation if it will interfere with another chest.
    - Check tombstone stuff more often (Every 100 ticks (5 seconds))
    [Version 1.2.4]
    - Fixed sign drop bug when destroying with timeout.
    [Version 1.2.3]
    - Fixed a bug in /tombfind with invalid input
    [Version 1.2.2]
    - Moved playerInteract to Highest priority since we remove a block.
    - Added check to make sure the tombstone is a chest before we doing anything.
    - Other general checks
    [Version 1.2.1]
    - Made /tombfind a bit more useful, will give a NESW direction.
    [Version 1.2.0]
    - Added compass commands.
    [Version 1.1.8]
    - Right-clicking a chest will quickloot/destroy if you have noDestroy/destroyQuickLoot enabled
    [Version 1.1.7]
    - Fixed quicklooting in RB670
    [Version 1.1.6]
    - Fixed some owner comparisons.
    [Version 1.1.5]
    - Moved setting "plugin" to onEnable
    - Moved setLine() outside of scheduler
    [Version 1.1.4]
    - Added more LWC checks
    [Version 1.1.3]
    - Added tombstone.admin
    [Version 1.1.2]
    - Fixed loading tombstone list after server restart
    - Check if player is online before sending tombstone messages
    [Version 1.1.1]
    - Updated to latest RB
    [Version 1.1.0] - Only updating for LWC2 from here on
    - Changed versioning scheme
    - Changed loading of permissions/LWC
    [Version 1.09]
    - Updated sign update code, should work better
    - Updated for LWC2, there is now an LWC1 build, and an LWC2 build
    [Version 1.08]
    - Configurable tombstone list storage
    - Allow LWC to be set to Public instead of disabled
    - Allow destroy on quickloot
    - Allow tombstones to be "invincible" besides quickloot
    [Version 1.07]
    - Fixed a bug in which protected chests could be destroyed.
    - Messages to players can be turned off.
    [Version 1.06]
    - Item-dupe fix broke plugin, fixed
    [Version 1.05]
    - Re-compiled for b522 to fix ItemStack.equals error
    [Version 1.04]
    - Small permissions handling update
    - Inform player if we run into a casting problem.
    [Version 1.03]
    - No longer treat GM as a special case, just load it as Permissions 2.0 like the author intended
    [Version 1.02]
    - Support Permissions 2.0/2.1
    - Support GroupManager
    [Version 1.01]
    - Fixed a Null Pointer Exception when chests are destroyed
    [Version 1.00]
    - Added ability to remove chests without needing LWC
    - LWC and remove thread are now a sync task
    - Right-click sign to quickloot. Permission added.
    - Better Permissions handling
    - LWC protects sign
    - Only create a large chest if needed
    - Deactivate LWC protection when sign or chest is destroyed
    [Version 0.06]
    - Implemented tombstone signs
    - Changed message if LWC is enabled to say how long before unprotect/destruction
    - lwcTime of 0 now indicates that LWC protection never expires
    [Version 0.05]
    - Added config file
    - Implemented chest removal
    - Configurable timeout
    - Toggle LWC usage via config
    [Version 0.04]
    - Added LWC timeout
    [Version 0.03]
    - Added LWC support
    - Made Permissions optional instead of required. Default without Permissions is allow all to use
    [Version 0.02]
    - Initial Public Release

    This post has been edited 15 times. It was last edited by Drakia Oct 13, 2011.
    ray landers, Montag, harakiwi and 9 others like this.
  2.  
  3. Offline

    devatrox

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    It does with the recommended CB. We're using an experimental version so it's kind of our fault I guess. But still worth mentioning.
  4. Offline

    HEmile

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Doesn't work with latest LWC :(
  5. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    @Liger_XT5 @ScottSpittle @wassilij @devatrox Tombstone appears to not be compatible with LWC 3.30, they have changed the function used for protecting chests. The only way to fix the error with chest creation before I release an update is to disable LWC support in Tombstone.

    @devatrox It works fine with the latest CB, even the non-rb, as that's what I run. There seems to be an issue with LWC though, but the code/API hasn't changed.

    I need somebody to post their full server.log so I can see what's going on.
  6. Offline

    devatrox

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Code:
    2011-07-11 11:01:18 [INFO] Starting minecraft server version Beta 1.7.3
    2011-07-11 11:01:18 [INFO] Loading properties
    2011-07-11 11:01:18 [INFO] Starting Minecraft server on 85.131.153.46:25565
    2011-07-11 11:01:18 [INFO] This server is running Craftbukkit version git-Bukkit-unknown (MC: 1.7.3)
    2011-07-11 11:01:18 [INFO] DataSourcePool [MinecartManiaCore] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[20]
    2011-07-11 11:01:18 [INFO] DatabasePlatform name:MinecartManiaCore platform:mysql
    2011-07-11 11:01:18 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
    2011-07-11 11:01:19 [INFO] Entities enhanced[0] subclassed[2]
    2011-07-11 11:01:19 [INFO] DataSourcePool [MinecartManiaSignCommands] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[20]
    2011-07-11 11:01:19 [INFO] DatabasePlatform name:MinecartManiaSignCommands platform:mysql
    2011-07-11 11:01:19 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
    2011-07-11 11:01:19 [INFO] Entities enhanced[0] subclassed[2]
    2011-07-11 11:01:19 [INFO] LWC: Loading shared objects
    2011-07-11 11:01:19 [INFO] LWC: Protection cache: 0/10000
    2011-07-11 11:01:19 [INFO] LWC: Native library: plugins/LWC/lib/native/Linux/amd64/libsqlitejdbc.so
    2011-07-11 11:01:19 [INFO] [Permissions] (Yeti) was initialized.
    2011-07-11 11:01:19 [INFO] [Permissions] version [3.1.6] (Yeti)  loaded
    2011-07-11 11:01:19 [INFO] Preparing level "world"
    2011-07-11 11:01:19 [INFO] Preparing start region for level 0 (Seed: 4182329312722882019)
    2011-07-11 11:01:20 [INFO] Preparing start region for level 1 (Seed: -8785494848616298431)
    2011-07-11 11:01:20 [INFO] [PorteCoulissante] plugin version 1.2.1 by Captain_Chaos enabled
    2011-07-11 11:01:20 [WARNING] [PorteCoulissante] plugin could not determine CraftBukkit build number!
    2011-07-11 11:01:20 [INFO] Loading BetterShop version 1.6.6.5 ...
    2011-07-11 11:01:20 [INFO] [BetterShop] Notice: Unused Configuration Nodes:
    strings.commandlog
    2011-07-11 11:01:22 [INFO] [BetterShop] File is newer than on git
    2011-07-11 11:01:22 [INFO] [BetterShop] MySQL database localhost:ni2941_1_DB/BetterShop loaded.
    2011-07-11 11:01:22 [INFO] [BetterShop] Attached to iConomy.
    2011-07-11 11:01:22 [INFO] [BetterShop] Attached to Permissions.
    2011-07-11 11:01:22 [INFO] [BetterShop] 'Help' support enabled.
    2011-07-11 11:01:22 [INFO] BetterShop version 1.6.6.5 is enabled!
    2011-07-11 11:01:22 [INFO] [SignShop] Hooked into Permissions
    2011-07-11 11:01:22 [INFO] [SignShop] v1.2 enabled
    2011-07-11 11:01:22 [INFO] [VanishNoPickup] 1.9.9 enabled.
    2011-07-11 11:01:22 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world) Single session is enforced.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world) TNT ignition is PERMITTED.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world) Lava fire is blocked.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world) Fire spread is UNRESTRICTED.
    2011-07-11 11:01:22 [INFO] WorldGuard: Loaded configuration for world 'world"
    2011-07-11 11:01:22 [INFO] WorldGuard: (world_nether) Single session is enforced.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world_nether) TNT ignition is PERMITTED.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    2011-07-11 11:01:22 [INFO] WorldGuard: (world_nether) Fire spread is UNRESTRICTED.
    2011-07-11 11:01:22 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    2011-07-11 11:01:22 [INFO] WorldGuard: 31 regions loaded for 'world'
    2011-07-11 11:01:22 [INFO] WorldGuard 5.2.2 enabled.
    2011-07-11 11:01:22 [INFO] MCBans: mcbans version 2.9.1 is enabled!
    2011-07-11 11:01:22 [INFO] MCBans: Voting enabled!
    2011-07-11 11:01:22 [INFO] MCBans: Checking for premium!
    2011-07-11 11:01:22 [INFO] MCBans: Server NOT premium!
    2011-07-11 11:01:22 [INFO] [GeoCacherLoot] Enabled
    2011-07-11 11:01:22 [INFO] [BlockDamage] hooked into Permissions.
    2011-07-11 11:01:22 [INFO] [BlockDamage] Configuration file loaded!
    2011-07-11 11:01:22 [INFO] [BlockDamage] version v1.0 is enabled.
    2011-07-11 11:01:22 [INFO] [MYWARP] [MYWARP]: 9 warps loaded
    2011-07-11 11:01:22 [INFO] [MYWARP] Permissions enabled using: Permissions v3.1.6
    2011-07-11 11:01:22 [INFO] [MYWARP] Help plugin support enabled.
    2011-07-11 11:01:22 [INFO] [MYWARP] MyWarp 2.0 enabled
    2011-07-11 11:01:22 [INFO] PickBoat version 0.3.5 is enabled!
    2011-07-11 11:01:22 [INFO] [HELP] 0 extra help entries loaded
    2011-07-11 11:01:22 [INFO] [HELP] Permissions enabled using: Permissions v3.1.6
    2011-07-11 11:01:22 [INFO] [HELP] 0.3.1 enabled
    2011-07-11 11:01:22 [INFO] [Minecart Mania] Debug mode switched to NORMAL
    2011-07-11 11:01:23 [INFO] [Minecart Mania] MinecartManiaCore version 1.2.3 is enabled!
    2011-07-11 11:01:23 [INFO] [RetractableBridge] plugin version 1.3.6 by Captain_Chaos enabled
    2011-07-11 11:01:23 [WARNING] [RetractableBridge] plugin could not determine CraftBukkit build number!
    2011-07-11 11:01:23 [INFO] WorldEdit 4.6 enabled.
    2011-07-11 11:01:23 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-07-11 11:01:23 [INFO] CommandBook 1.5.2-customized enabled.
    2011-07-11 11:01:23 [INFO] CommandBook: Maximum wrapper compatibility is enabled. Some features have been disabled to be compatible with poorly written server wrappers.
    2011-07-11 11:01:23 [INFO] CommandBook: 0 banned name(s) loaded.
    2011-07-11 11:01:23 [INFO] CommandBook: 1 kit(s) loaded.
    2011-07-11 11:01:23 [INFO] CommandBook: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-07-11 11:01:23 [INFO] [Minecart Mania] MinecartManiaSignCommands version 1.2.3 is enabled!
    2011-07-11 11:01:23 [INFO] [iConomy] Logging enabled.
    2011-07-11 11:01:23 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    2011-07-11 11:01:23 [INFO] [iConomy] Developed by: [Nijikokun]
    2011-07-11 11:01:23 [INFO] [SignShop] hooked into iConomy.
    2011-07-11 11:01:23 [INFO] [iConomy] hooked into Permissions.
    2011-07-11 11:01:23 [INFO] [VoxelSniper] Config loaded
    2011-07-11 11:01:23 [INFO] VoxelSniper version 4.748c is enabled! Snipe away.
    2011-07-11 11:01:23 [INFO] [Minecart Mania] Permissions detected. Using permissions.
    2011-07-11 11:01:23 [INFO] [Minecart Mania] MinecartManiaAdminControls version 1.2.3 is enabled!
    2011-07-11 11:01:23 [INFO] Tombstone v.1.2.9 is enabled.
    2011-07-11 11:01:23 [INFO] [Tombstone] Using Permissions (v3.1.6)
    2011-07-11 11:01:23 [INFO] PumpkinDiver version 0.16 is enabled!
    2011-07-11 11:01:23 [INFO] [HeroicDeath] 1.8.1.156 enabled.
    2011-07-11 11:01:23 [INFO] [Jail] Loaded 1 jail zones.
    2011-07-11 11:01:23 [INFO] [Jail] Loaded 1 prisoners.
    2011-07-11 11:01:23 [INFO] [Jail] Loaded 0 cells.
    2011-07-11 11:01:23 [INFO] FenceStack version 1.13 loaded.
    2011-07-11 11:01:23 [INFO] [GeoCacher] version 1.2 is enabled!
    2011-07-11 11:01:23 [INFO] [GeoCacher] is using Permissions
    2011-07-11 11:01:23 [INFO] [GeoCacher] 'Help' support enabled.
    2011-07-11 11:01:23 [INFO] MYSQL NOT YET IMPLEMENTED.. Fallback to FlatFile
    2011-07-11 11:01:23 [INFO] [GeoCacher] Loaded 2 GeoCaches
    2011-07-11 11:01:23 [INFO] [MYHOME] 24 homes loaded
    2011-07-11 11:01:23 [INFO] [MYHOME] Permissions enabled using: Permissions v3.1.6
    2011-07-11 11:01:23 [INFO] [MYHOME] Help plugin support enabled.
    2011-07-11 11:01:23 [INFO] [MYHOME] MyHome 2.0 enabled
    2011-07-11 11:01:23 [INFO] [GeoCacherLootFTF] Enabled
    2011-07-11 11:01:23 [INFO] [GeoCacherLootiConomy] iConomy not detected
    2011-07-11 11:01:23 [INFO] [GeoCacherLootiConomy] Enabled
    2011-07-11 11:01:23 [INFO] [GeoCacherLootiConomy] hooked into iConomy.
    2011-07-11 11:01:23 [INFO] [Minecart Mania] MinecartManiaChestControl version 1.2.2 is enabled!
    2011-07-11 11:01:23 [INFO] nChat version 0.4 is enabled!
    2011-07-11 11:01:23 [INFO] [Minecart Mania] MinecartManiaStation version 1.2.3 is enabled!
    2011-07-11 11:01:23 [INFO] [MagicCarpet] MagicCarpet version 1.5.6 is enabled!
    2011-07-11 11:01:23 [INFO] [MagicCarpet] Take yourself wonder by wonder, using /magiccarpet or /mc.
    2011-07-11 11:01:23 [INFO] [MagicCarpet] Using Permissions.
    2011-07-11 11:01:23 [INFO] LWC: Loaded 135 locale strings (0 overrides)
    2011-07-11 11:01:23 [INFO] Using Permissions API
    2011-07-11 11:01:23 [INFO] LWC: Loading SQLite
    2011-07-11 11:01:23 [INFO] LWC: Using: Native
    2011-07-11 11:01:23 [INFO] LWC: Precached 135 protections.
    2011-07-11 11:01:23 [INFO] LWC: At version: 3.30-git-LWC-94b93dd42195692ed1823346544359d5917274a2-b69jnks
    2011-07-11 11:01:23 [INFO] [Tombstone] Using LWC (v3.3)
    2011-07-11 11:01:23 [INFO] [NoCheat] version [1.07c] couldn't find CrafTIRC plugin. Disabling logging to IRC.
    2011-07-11 11:01:23 [INFO] [NoCheat] version [1.07c] is enabled with the following checks: moving speedhack flying fastswim
    2011-07-11 11:01:23 [INFO] Done (0.384s)! For help, type "help" or "?"
    Code:
    2011-07-11 12:28:02 [SEVERE] Could not pass event ENTITY_DEATH to Tombstone
    java.lang.NoSuchMethodError: com.griefcraft.sql.PhysDB.registerProtection(IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;III)V
        at net.TheDgtl.Tombstone.Tombstone.activateLWC(Tombstone.java:283)
        at net.TheDgtl.Tombstone.Tombstone.access$10(Tombstone.java:275)
        at net.TheDgtl.Tombstone.Tombstone$eListener.onEntityDeath(Tombstone.java:704)
        at org.bukkit.plugin.java.JavaPluginLoader$57.execute(JavaPluginLoader.java:642)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:321)
        at net.minecraft.server.EntityPlayer.die(EntityPlayer.java:141)
        at net.minecraft.server.EntityLiving.damageEntity(EntityLiving.java:391)
        at net.minecraft.server.EntityHuman.damageEntity(EntityHuman.java:436)
        at net.minecraft.server.EntityPlayer.damageEntity(EntityPlayer.java:179)
        at net.minecraft.server.EntityMonster.a(EntityMonster.java:90)
        at net.minecraft.server.EntityCreature.c_(EntityCreature.java:64)
        at net.minecraft.server.EntityLiving.v(EntityLiving.java:685)
        at net.minecraft.server.EntityMonster.v(EntityMonster.java:26)
        at net.minecraft.server.EntityZombie.v(EntityZombie.java:30)
        at net.minecraft.server.EntityLiving.m_(EntityLiving.java:218)
        at net.minecraft.server.EntityMonster.m_(EntityMonster.java:30)
        at net.minecraft.server.World.entityJoinedWorld(World.java:1190)
        at net.minecraft.server.WorldServer.entityJoinedWorld(WorldServer.java:48)
        at net.minecraft.server.World.playerJoinedWorld(World.java:1172)
        at net.minecraft.server.World.cleanUp(World.java:1102)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:447)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-07-11 12:28:02 [INFO] [HeroicDeath] Haarhus was killed by an angry Zombie
  7. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    I'm on my way to work, so a fix won't be possible until ~7pm (11 hours)
  8. Offline

    devatrox

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    No hurry. At least the items drop down like they normally do and not just disappear into nowhere :D

    Thanks for your support and this great plugin!
  9. Offline

    Liger_XT5

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Thanks, I've disabled LWC for the time being. I'll check back later to see how things are going.
    Thanks for the great plugin!!!
  10. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    [Version 1.3.1]
    - Recompiled with LWC 3.30

    This will fix the problems people are encountering with LWC 3.30
  11. Offline

    Markezzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    If i download the plugin it says all the time version 1.3.0. Is this a misstake from you or is the downloadlink not up to date?


    Thanks for your Help!
  12. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Fixed, had no internet for three days, sorry.
  13. Offline

    duhfux

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Something's gone wrong and for some reason it drops empty chest/sign with the stuff around it. I won't be using this plugin for a bit until whatever caused the problem is fixed, which I hope is soon as this is my choice plugin over all inventory recovery ones :)

    If anyone else has this problem, say something.

    Cheers :)
  14. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Without any logs, nobody can help you, nor can this "bug" be fixed
  15. Offline

    wassilij

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    It's because you use LWC 3.30 and NOT the newses Tombstone version .. get the newest Tombstone version with LWC 3.30 support and all is working good.
  16. Offline

    duhfux

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Ah okay, thanks. Turns out I have LWC 3.21. Shall update now and test it :)
  17. Offline

    Mr.Squeak

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    I apologize myself for how the people of this site have offended you. Not all of us are bad, but I do appreciate that you will be keeping your plugins up to date, even if you don't answer questions anymore. I for one do not blame you for not wanting to help the people of this site, many of them are ungrateful and do not realize that it is not your job to keep up with their stupidity, no offense anybody. Once again thank you for keeping up your plugins.
    wassilij likes this.
  18. Offline

    Clucky

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Any reason that all my players except 2 are getting tombstones? One is in my TM group, the other in my Admins group. I would post the server log, however, it does not yield any error message, which is strange.


    Code:
    groups:
        Banned:
            default: false
            info:
                prefix: 'Banned'
                suffix: ''
                build: ''
            inheritance:
                - Member
            permissions:
                - '-tpc.*'
                - '-GiftSend.send'
                - '-buttonwarp.*'
                - '-multiverse.*'
                - '-citizens.*'
    
        Member:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
                - 'deathmessageplugin.*'
    #            - '-lastseen.*'
                - '-vegetation.*'
                - 'tcl.*'
                - '-jobs.admin.*'
                - 'jobs.join.*'
                - 'jobs.world.*'
                - 'iConomy.*'
                - '-iConomy.admin.*'
                - '-citizens.*'
                - '-worldedit.*'
                - 'worldedit.extinguish'
                - '-coorteleport.*'
                - '-runecraft.rune.adminpick'
                - '-SignShop.*'
                - 'SignShop.Signs.*'
                - '-turnstile.*'
                - 'turnstile.set.*'
                - 'turnstile.open.*'
                - 'turnstile.make.*'
                - 'turnstile.earned'
                - '-turnstile.openfree'
                - '-turnstile.makefree'
                - 'lockchest.*'
                - '-lockchest.pick'
                - '-lockchest.break'
                - 'showcase.*'
                - '-showcase.infinite'
                - '-showcase.admin'
                - '-simplefall.use'
                - '-rocketboots.*'
                - 'rocketboots.boots.gold'
                - 'rocketboots.feather'
                - 'commandbook.kit.list'
                - 'commandbook.kit.kits.starter'
                - 'commandbook.who'
                - 'commandbook.motd'
                - 'commandbook.rules'
                - 'commandbook.return'
                - 'commandbook.say.me'
                - 'commandbook.msg'
                - 'commandbook.whereami'
                - 'commandbook.whereami.*'
                - 'commandbook.whois'
                - 'invtools.*'
                - '-firelord.*'
                - 'firelord.sword'
                - 'firelord.armor'
                - 'zeeslag.*'
                - 'fishpeople.lavasafe'
                - 'fishpeople.infiniteair'
                - 'fridges.fridge.use'
                - 'fridges.anvil.*'
                - 'wurkit.player.*'
    #            - '-monsterbox.*'
                - 'tcl.*'
                - 'tpc.tpcback'
                - 'clans.all'
                - '-dropchest.*'
                - 'dropchest'
                - 'dropchest.create'
                - 'dropchest.remove'
                - 'dropchest.radius.set'
                - 'dropchest.which'
                - 'dropchest.filter'
                - 'dropchest.list'
                - '-lwc.*'
                - 'lwc.protect'
                - '-lockip.*'
                - 'lockip.exempt'
                - '-minemail.reload'
                - '-minemail.wipe'
                - '-minemail.admin'
                - '-minemail.paper'
                - 'thundertower.*'
                - '-phatloots.*'
                - 'phatloots.use'
                - '-buttonwarp.*'
                - 'buttonwarp.use'
                - 'buttonwarp.getreward'
                - '-multiworld.*'
                - 'multiworld.goto'
                - '-reporter.reports'
                - '-reporter.mod'
                - '-armageddon.grenades.*'
                - '-armageddon.guns.*'
                - 'armageddon.grenades.tnt'
                - 'armageddon.display'
                - 'armageddon.configure'
                - 'armageddon.toggle'
                - '-FullChest.*'
                - 'modtrs.command.modlist'
                - 'modtrs.command.modreq'
                - '-advbans.*'
                - 'timerank.ab.Superpick'
                - 'mobbounty.*'
                - '-mobbounty.commands.*'
                - 'mobbunty.commands.mb'
                - 'MobLoot.*'
                - '-MobLoot.Admin.*'
                - 'chaircraft.sit'
                - '-OpenInv.*'
                - 'chestlock.*'
                - '-chestlock.admin'
                - 'tombstone.*'
                - '-tombstone.admin'
                - 'stocks.*'
                - '-stocks.admin.*'
                - 'elevators.*'
                - '-elevators.operator'
                - 'textplayer.text'
                - 'textplayer.use'
                - 'textplayer.textadmin'
                - 'textplayer.listusers'
                - 'textplayer.free'
                - 'textplayer.watch.user'
                - 'lockcraft.blacklists.basic'
                - 'multiverse.world.spawn'
                - 'multiverse.tp'
                - 'multiverse.portal.list'
                - 'itemid.*'
                - 'GiftSend.send'
                - 'dwarfforge.*'
                - 'mobarena.arenas.*'
                - 'mobarena.classes.*'
                - 'mobarena.use.*'
                - 'commandbook.warp.teleport'
                - 'commandbook.time.check'
                - 'minemail.*'
                - '-minemail.reload'
                - '-minemail.wipe'
                - '-minemail.admin'
                - '-minemail.paper'
        TM:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Member
            permissions:
                - 'citizens.use.*'
                - 'citizens.create.*'
                - '-citizens.modify.*'
    #            - 'monsterbox.*'
    #            - '-monsterbox.free'
        Moderator:
            default: false
            info:
                prefix: 'Moderator '
                suffix: ''
                build: true
            inheritance:
                - TM
            permissions:
                - 'tcl.*'
                - 'coorteleport.*'
                - 'commandbook.mute'
                - 'commandbook.kick'
                - 'commandbook.bans.ban'
                - 'commandbook.bans.save'
                - 'reporter.mod'
                - 'modtrs.mod'
                - 'modtrs.command.*'
                - 'SimpleHelp.admin'
                - 'advbans.bann'
                - 'advbans.banip'
                - 'advbans.kickk'
                - 'SimpleJail.jail'
                - 'commandbook.debug.clock'
        Admins:
            default: false
            info:
                prefix: 'Admin '
                suffix: ''
                build: true
            inheritance:
                - Moderator
            permissions:
    #            - 'lastseen.*'
                - 'jobs.*'
                - 'iConomy.*'
                - 'citizens.modify.*'
                - 'citizens.admin'
                - 'turnstile.admin.*'
                - 'commandbook.give'
                - 'commandbook.give.*'
                - 'commandbook.teleport'
                - 'commandbook.teleport.*'
                - 'commandbook.unmute'
                - 'commandbook.slap'
                - 'commandbook.slap.*'
                - 'commandbook.whois.*'
                - 'commandbook.bans.*'
                - 'LockIP.admin'
                - 'ItemDrop.allow'
                - 'multiworld.newworld'
                - 'OpenInv.*'
                - 'chestlock.admin'
                - 'SimpleJail.unjail'
                - 'textplayer.watch.*'
                - 'vanish.*'
                - 'advbans.*'
        operator:
            default: false
            info:
                prefix: 'Operator '
                suffix: ''
                build: true
            inheritance:
            permissions:
                - '*'
                - '-monsterbox.free'
                - '-turnstile.openfree'
                - '-turnstile.makefree'
                - '-firelord.*'
                - 'firelord.sword'
                - 'firelord.armor'
                - '-rocketboots.*'
                - 'rocketboots.boots.gold'
                - 'rocketboots.feather'
                - '-lwc.*'
                - 'lwc.protect'
                - '-LockIP.exempt'
                - 'reporter.reports'
                - '-armageddon.grenades.*'
                - '-armageddon.guns.*'
                - 'armageddon.grenades.tnt'
                - '-CommandIConomy.Free'


    Code:
    users:
        PRaptor:
            permissions:
            - worldedit.superpickaxe
            groups:
            - Admins
        Drewdoom:
            permissions:
            groups:
            - Member
        pieking19:
            permissions:
            groups:
            - Member
        x_clucky:
            permissions:
            groups:
            - operator
        Micronique:
            permissions:
            groups:
            - Admins
        TravisSOS:
            permissions:
            - LockIP.exempt
            groups:
            - Member
        charles:
            permissions:
            groups:
            - Member
        charles2:
            permissions:
            groups:
            - Member
        codysos:
            permissions:
            - LockIP.exempt
            groups:
            - Member
        ElementalMonkey:
            permissions:
            - LockIP.exempt
            groups:
            - Member
        Nickdog125:
            permissions:
            - LockIP.exempt
            groups:
            - Member
        Chadward27:
            permissions:
            groups:
            - Moderator
        convict214:
            permissions:
            - LockIP.exempt
            groups:
            - TM
        screwhead5:
            permissions:
            - LockIP.exempt
            groups:
            - TM
        medievalmoon:
            permissions:
            groups:
            - Member
        Silvergem:
            permissions:
            groups:
            - Member
        The_Valiance:
            permissions:
            - LockIP.exempt
            groups:
            - Member
        Player:
            permissions:
            - LockIP.exempt
            groups:
            - Member
        Time_Goes_By:
            permissions:
            groups:
        Steve:
            permissions:
            groups:
        kingxd:
            permissions:
            groups:
        drewdoom:
            groups:
            - Member



    EDIT: About an hour after I posted this, it corrected itself. It was originally doing this for about 3 days, idk why all of the sudden it started working again, but I'm glad.

    Sorry about the way people treat you, I would do exactly the same thing if I were in your position. People can be such jerks when they don't get what they want... No good rich spoiled brats...
  19. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    @Clucky "I would post the server log, however, it does not yield any error message, which is strange." There is a "logEvents" option that will turn logging on in the case of issues in the future.
  20. Offline

    Lathanael

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Is this compatible with SimpleSignEdit? From a first guess I'd say no, the QuickLoot might not work if I'm not mistaken, but i have not tried it.

    If not, is there a way you could add compatibility?

    Or give me a hint where i'd have to modify the code to make em compatible ;) (Maybe I'll be able to get it working, not sure though)

    BTW: Great plugin, it makes life so much more comfortable not having to look around where your loot has spread all over the floor.

    cheers
    Lathanael

    EDIT: Oh and pls forgive me if it already has been asked, the SearchFu is such a pain sometimes, i might just have overread it. Link me to the post if there's one ;)
  21. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    @Lathanael If you enable noDestroy and destroyQuickLoot you will be able to right click the chest to quickloot, not just the sign. This will however make it so people can't destroy chests manually, and they won't receive their chest back upon quickloot. I will not be adding any other method of doing this however.
  22. Offline

    Lathanael

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME

    Thanks, that will do the trick, as everyone gets a chest spawned upon death ;).
    There's no need to implement the method if the solution is so simple.
  23. Offline

    Odai

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    bukkit: 1000
    i have the problem that when you remove the chest the protection stays on the position where the chest was, so when someone place any block there its allways locked then

    Code:
    lwcRemove: true
    tombRemove: false
    lwcTimeout: 3600
    noDestroy: false
    logEvents: false
    lwcEnable: true
    playerMessage: true
    destroyQuickLoot: false
    noInterfere: true
    lwcPublic: false
    tombSign: true
    removeTime: 18000
    saveTombList: true
    
  24. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    @Odai It would seem LWC is no longer disabling protection on its own. I'll look into this.

    I just reinstalled Windows (New PC build ftw) and the Java download server is down, so I can't actually work on my plugins until it is back up. Sorry for the delay.

    This post has been edited 1 time. It was last edited by Drakia Jul 31, 2011.
  25. Offline

    Odai

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    yes it just happens with the tombstone chest when you destroy them it doesent unrigister the chest.
  26. Offline

    Azlodin

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    I would also like to add that the sign on the chest is also staying locked with LWC. Which will also lock the block above the chest where the sign was.

    Great plugin btw, and I eagerly await the analysis of what's going on. =)
  27. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Sorry about the delay, Oracle just today got the Java download servers back up (Fail migration)
  28. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Huzzah, found the problem! There was an undocumented API change:

    [Version 1.3.2]
    - Apparently LWC 3.30 had a change in API that wasn't documented, yay
  29. Offline

    Azlodin

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Thanks for the update, but I have something of note. Within the console the version being stated is still 1.3.1. That is unless your download link in the OP has not been updated as of yet ;)
  30. Offline

    Drakia

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    New version was up, just forgot to change plugin.yml - Fixed
  31. Offline

    andrewkm

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Good Job on this plugin. All systems go.
  32. Offline

    Jade Knightblazer

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Minecraft account:
    MCUSERNAME
    Hi, I hope you can take time in your busy life with a quick glance / help.
    Firstly I am new to premissions set up however so far I am able to get most of all plugins to work, but just not yours... * scratches head* My best guess is that I am placing your tombstone. permissions in a wrong space or illy.

    All I want to do is allow all players besides default group to have a tombstone chest when they die with a sign. No chest or sign needed in inventory. (basically th way the plugin works for OP w/o permissions.)

    My layout
    (bukkit 1000), (tombstonev1.3.2), (PermissionsBukkit v1.1)

    users:
    jade_knightblaze:
    permissions:
    groups:
    - guardian
    groups:
    default:
    permissions:
    permissions.build: false
    admin:
    permissions:
    permissions.*: true
    multiarrow.use.all: true
    inheritance:
    - guardian
    guardian:
    permissions:
    permissions.*: true
    multiarrow.use.all: false
    multiarrow.use.lightning: true
    multiarrow.use.drill: true
    multiarrow.use.torch: true
    multiarrow.use.teleport: true
    tombstone.admin: true
    inheritance:
    - user
    user:
    permissions:
    permissions.build: true
    tombstone.use: true
    tombstone.freechest: true
    tombstone.large: true
    tombstone.lwc: true
    tombstone.sign: true
    tombstone.freesign: true
    tombstone.quickloot: true
    tombstone.cmd.tombfind: true
    WolfSpawn.release: true
    WolfSpawn.respawn: true
    WolfSpawn.spawnatplayer: true
    worlds:
    Zarocks Region:
    coolplugin.item: true
    inheritance:
    - default
    messages:
    build: '&cYou do not have permission to build here.'


    Configfile.yml
    lwcRemove: false
    tombRemove: true
    lwcTimeout: 3600
    noDestroy: false
    logEvents: false
    lwcEnable: true
    playerMessage: true
    destroyQuickLoot: True
    noInterfere: true
    lwcPublic: false
    tombSign: true
    removeTime: 18000
    saveTombList: true


    *Yes I have tried inputting tombstone.xxxx with ' ' s, - - s, and plain tombstone.xxx. Only : true seems to allow the server to load up with no errors, but tombstone still does not allow .freechest or .freesign or anyother non default tombstone.xxx

    Thanks for your time.

    This post has been edited 4 times. It was last edited by Jade Knightblazer Aug 5, 2011.
Thread Status:
Not open for further replies.

Share This Page