Inactive [TP/CHAT] DeathTpPlus V 3.9.16.2262 -DeathNotify, DeathTP, Tombstones, Tomb and more [CB 1.3.2]

Discussion in 'Inactive/Unsupported Plugins' started by Don Redhorse, Oct 5, 2011.

  1. Offline

    Don Redhorse

    DeathTpPlus announces a death with a random message based on the death cause and allows you to teleport to the point of death It can also create a TombStone at the place you died to let you save your inventory (aka DeadMansChest).You can also create a tomb sign which can be used as respawn point and as a place of information of how often you died and what your last death cause was.

    Take a look, thanks to BrandonHopkins



    Based on the original plugin from lonelydime. Integrates a fork of furt from cenotaph and tomb from Belphemur. And code from mung3r!
    Supports

    DeathTP

    • Use /deathtp to teleport back to where you died.
    • Optional: Charge a player an item to teleport (must be in the player's hand).
    • Optional: Vault support for economies
    DeathNotify

    • Customizable messages for every kind of death.
    • Supports multiple messages per kind of death, chosen randomly when someone dies.
    • Custom colors per message.
    • PvP messages that show the attacker as well as what they killed with. Item names have been cleaned up to look pretty.
    • Optional: Show tombstones where someone died and how they died.
    • Optional: CraftIRC support
    TombStone

    • Create a TombStone where you die and save your inventory.
    • Highly Configurable via Permissions
    • More Info on the TombStone Page
    Tomb

    • Create a Tomb Sign which holds the following information: The name of the player, the number of times he died and what was the last cause.
    • Can be used as respawn point after death
    • There can be more than one Tomb
    • You can configure if the respawn point is based upon the world the player is in or across worlds
    • More Info on the Tomb Page
    Other stuff

    • Streaks (Show a custom message when someone has killed a custom set of people or died a custom amount of times.)
    • DeathLogs (Show the total number of times somebody died)
    • MultiKills (Well... you know.... quake style... no sound though :) )
    • Need a simpler version with only messages? DeathNotifier
    • More Info on the DeathTpPlus Page
    Install / Update / Permissons / Bugs / ChangeLog etc?

    Dev.bukkit

    Downloads & Support

    Dev.bukkit

    Todo

    • Upcoming Features
    • MAJOR Internal Reworking (that is really necessary)
    • Updates to RB of CB
     
  2. Offline

    Don Redhorse

    heads up... there will be a very big change coming with the next release, and some massive debug logging included to get me down to the errors... honestly I test the plugins before I release but some things I can't test as I can only do it as single person with a limited set of plugins.

    so I hope the new release will a) fix a lot of the issues we see, b) help me debug the issues and c) give you more functionality and a faster return of me when a new issue comes up.
     
  3. Offline

    boytheo

    I did. And it doesn't work for me. Here's my config file.

    I see I'm using "allow-deathtp" but you said "allowDeathTp"?

    Code:
    ### DeathTpPlus
    #
    # Note: All values need to be in '', eg. true must be 'true', a cost of 10 must be '10'
    
    
    
    # Config Version
    configVer: '2.01'
    
    # ----- Standard plugin features
    
    #Check for new versions on startup
    versionCheck: 'true'
    
    #Print messages to terminal if true (debug)
    logEvents: 'false'
    
    # Economy Provider Vault / Register (Case insensitive)
    economy-provider: 'vault'
    
    # CraftIRC
    deathtp-tag: 'all'
    
    
    
    # ----- DeathTpPlus features
    
    # Show the death messages on the server
    show-deathnotify: 'true'
    
    # Allow players to access the deathtp command (Overrides permissions)
    allow-deathtp: 'true'
    
    # Death Logs
    allow-deathlog: 'true'
    
    # Show kill or death streaks read in from killstreak.txt and deathstreak.txt
    show-streaks: 'true'
    
    # Item ID of the item you must have in your hand to teleport. Will remove 1 of these when the command is given. Leave 0 for free teleports or economy.
    charge-item: '368'
    
    # Show sign tombstones upon death
    show-sign: 'false'
    
    # Economy
    deathtp-cost: '10'
    
    # Allow World Travel = yes, no, permissions
    allow-worldtravel: 'no'
    
    
    # ------- TombStone features (General)
    
    # Enable TombStone feature
    enable-tombstone: 'true'
    
    #Place a sign on the TombStone if true
    TombStoneSign: 'false'
    
    #Prevent non-Op players from destroying cenotaphs if true (destroyQuickLoot overrides)
    noDestroy: 'true'
    
    #Show status messages to the player if true
    playerMessage: 'true'
    
    #Save TombStone listing between server reloads if true
    saveTombStoneList: 'true'
    
    #Stop TombStone creation next to existing chests if true (IF set to false it could allow users to circumvent chest protection.
    noInterfere: 'true'
    
    #we normally checks to make sure we aren't trying to create a chest in the void.
    #If you handle or modify the void with another plugin, you can disable that check here.
    #This option should be true for most servers.
    voidCheck: 'true'
    
    #If you are not locking your chests with Lockette or LWC but still want them to be
    #protected against Creeper explosions, or you want your chests to be protected even
    #after they are unlocked, enable this.
    creeperProtection: 'false'
    
    #Each line may be one of any custom text OR:
    #{name} for player name
    #{date} for day of death
    #{time} for time of death (server time)
    #{reason} for cause of death
    #REMEMBER: LINES ARE LIMITED TO 15 CHARACTERS, AND DON'T FORGET THE QUOTES!
    Sign:
        Line1: "{name}"
        Line2: "RIP"
        Line3: "{date}"
        Line4: "{time}"
    
    #For formatting, see http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
    dateFormat: "MM/dd/yyyy"
    timeFormat: "hh:mm a"
    
    # ------- TombStone features (Removal)
    
    #Destroy TombStone on player quickloot if true
    destroyQuickLoot: 'true'
    
    #Remove TombStone after removeTime seconds if true
    TombStoneRemove: 'false'
    removeTime: '60000'
    
    #Immediately remove TombStone once it is empty, overriding all other timeout options
    #WARNING: THIS IS A PROCESSOR-INTENSIVE OPTION
    removeWhenEmpty: 'false'
    
    #Never remove a TombStone unless it is empty
    #WARNING: THIS IS A PROCESSOR-INTENSIVE OPTION
    keepUntilEmpty: 'false'
    
    
    # ------- TombStone features (Security)
    
    LocketteEnable: 'true'
    lwcEnable: 'false'
    
    #Remove security after securityTimeout seconds
    securityRemove: 'true'
    securityTimeout: '600'
    
    #Set LWC protection to Public instead of removing it after the timeout
    lwcPublic: 'false'
    
    
    # ----- Death Messages
    
    # Must contain at least 1 line. If there are more, it will appear randomly when a person dies.
    # %n for player who died
    # %a name of player who attacked in pvp deaths
    # %i for item a player was using to kill someone else
    #
    # Colors
    #
    # §0 Black
    # §1 Navy
    # §2 Green
    # §3 Blue
    # §4 Red
    # §5 Purple
    # §6 Gold
    # §7 LightGray
    # §8 Gray
    # §9 DarkPurple
    # §a LightGreen
    # §b LightBlue
    # §c Rose
    # §d LightPurple
    # §e Yellow
    # §f White
    
    fall:
    - '§4%n tripped and fell...down a cliff.'
    - '§4%n leapt before looking.'
    - '§4%n forgot to bring a parachute!'
    - '§4%n learned to fly...briefly...'
    - '§4%n felt the full effect of gravity.'
    - '§4%n just experienced physics in action.'
    - '§4%n fell to his death.'
    - '§4%n forgot to look out below!'
    - '§4%n got a little too close to the edge!'
    - '§4%n, gravity is calling your name!'
    - '§4%n faceplanted into the ground!'
    - '§4%n yells, "Geronimo!"....*thud*'
    - '§4What goes up must come down, right %n?'
    
    drowning:
    - '§4%n has drowned.'
    - '§4%n has become one with the ocean!'
    - '§4%n sunk to the bottom of the ocean.'
    - '§4%n went diving but forgot the diving gear!'
    - '§4%n needs swimming lessons.'
    - '§4%n''s lungs have been replaced with H20.'
    - '§4%n forgot to come up for air!'
    - '§4%n is swimming with the fishes!'
    - '§4%n had a surfing accident!'
    - '§4%n tried to walk on water.'
    - '§4%n set a record for holding breath underwater.'
    
    fire:
    - '§4%n burned to death.'
    - '§4%n has been set on fire!'
    - '§4%n is toast! Literally...'
    - '§4%n just got barbequed!'
    - '§4%n forgot to stop, drop, and roll!'
    - '§4%n is extra-crispy!'
    - '§4%n spontaneously combusted!'
    - '§4%n put his hands in the toaster!'
    - '§4%n just got burned!'
    
    fire_tick:
    - '§4%n burned to death.'
    - '§4%n has been set on fire!'
    - '§4%n is toast! Literally...'
    - '§4%n just got barbequed!'
    - '§4%n forgot to stop, drop, and roll!'
    - '§4%n likes it extra-crispy!'
    - '§4%n spontaneously combusted!'
    - '§4%n put his hands in the toaster!'
    - '§4%n just got burned!'
    
    lava:
    - '§4%n became obsidian.'
    - '§4%n was caught in an active volanic eruption!'
    - '§4%n tried to swim in a pool of lava.'
    - '§4%n was killed by a lava eruption!'
    - '§4%n was forged into obsidian by molten lava.'
    - '§4%n took a dip in the wrong kind of pool!'
    - '§4%n found out how to encase himself in carbonite.'
    - '§4%n, the floor is lava! The floor is lava!'
    
    creeper:
    - '§4%n was creeper bombed!'
    - '§4A creeper exploded on %n!'
    - '§4A creeper snuck up on %n!'
    - '§4A creeper tried to make love with %n...mmm.'
    - '§4%n just got the KiSSssss of death!'
    - '§4%n tried to hug a creeper!'
    - '§4%n is frowning like a creeper now!'
    
    skeleton:
    - '§4A skeleton shot %n to death!'
    - '§4A%n was on the wrong end of the bow. '
    - '§4A%n has a skeleton in the closet...'
    - '§4%n, strafe the arrows! Strafe the arrows!'
    - '§4A skeleton just got a headshot on %n!'
    
    spider:
    - '§4%n is all webbed up.'
    - '§4%n got trampled by arachnids!'
    - '§4%n got jumped by a spidah!'
    - '§4Spiders just climbed all over %n!'
    - '§4%n forgot spiders could climb!'
    
    zombie:
    - '§4%n was punched to death by zombies!'
    - '§4%n was bitten by a zombie!'
    - '§4%n fell to the hunger of the horde!'
    - '§4%n Hasn''t played enough L4D2!'
    - '§4%n couldn''t run faster than the zombie!'
    
    pvp:
    - '§4%a killed %n using a(n) %i!'
    - '§4%a slays %n with a %i!'
    - '§4%a hunts %n down with a %i!'
    - '§4%n was killed by a %i wielding %a!'
    - '§4%a leaves %n a bloody mess!'
    - '§4%a uses a %i to end %n''s life!'
    - '§4%n collapses due to %i attacks from %a!'
    - '§4%n is now a bloody mess thanks to %a''s %i!'
    - '§4%a beats %n with a %i!'
    - '§4%n was killed by %a''s %i attack!'
    - '§4%a defeats %n with a %i attack!'
    - '§4%a raises a %i and puts and end to %n''s life!'
    - '§4%a took out %n with a %i!'
    - '§4%n was victimised by %a''s %i!'
    - '§4%n was eliminated by %a''s %i!'
    - '§4%a executes %n with a %i!'
    - '§4%a finishes %n with a %i!'
    - '§4%a''s %i has claimed %n as another victim!'
    - '§4%n lost a savage duel to %a!'
    - '§4%a has beaten %n to a pulp!'
    - '§4%a pwns %n in a vicious duel!'
    - '§4Score %a 1 - %n 0!'
    - '§4%a has defeated %n in battle!'
    - '§4%n has been slain by %a!'
    - '§4%a emerges victorious in a duel with %n!'
    - '§4%n has been pwned by %a!'
    - '§4%n was killed by %a!'
    - '§4%n was dominated by %a!'
    - '§4%n was fragged by %a!'
    - '§4%n needs more practice and was killed by %a!'
    - '§4%n was beheaded by %a!'
    
    pvp-fists:
    - '§4%a pummeled %n to death'
    - '§4%a crusted %n with their bare hands'
    
    block_explosion:
    - '§4Careful %n, TNT goes boom!'
    - '§4%n was last seen playing with dynamite.'
    - '§4%n exploded into a million pieces!'
    - '§4%n cut the wrong wire!'
    - '§4%n has left his (bloody) mark on the world.'
    - '§4%n was attempting to exterminate gophers with dynamite!'
    - '§4%n was playing landmine hopscotch!'
    - '§4%n stuck his head in a microwave!'
    
    contact:
    - '§4%n got a little too close to a cactus!'
    - '§4%n tried to hug a cactus!'
    - '§4%n needs to be more careful around cactuses!'
    - '§4%n feels the wrath of cactusjack!'
    - '§4%n learns the results of rubbing a cactus!'
    - '§4%n died from cactus injuries!'
    - '§4%n poked himself with a cactus...and died.'
    - '§4%n ran into some pointy green stuff that wasn''t grass.'
    - '§4%n was distracted by a tumbleweed and died by cactus.'
    
    ghast:
    - '§4%n was blown to bits by a ghast.'
    - '§4 Those aren''t babies you hear, %n!'
    - '§4%n was killed by a ghostly hadouken!'
    - '§4%n just got exploded by a fireball!'
    - '§4%n got too comfy in the Nether!'
    
    slime:
    - '§4A slime found %n. The slime won.'
    - '§4%n just was playing with slime. The slime ain''t happy.'
    
    suffocation:
    - '§4%n suffocated.'
    - '§4%n was looking up while digging!'
    - '§4%n choked to death on earth!'
    - '§4%n choked on a ham sandwich'
    
    pigzombie:
    - '§4%n lost a fight against a zombie pig.'
    - '§4%n, touching a zombie pig is never a good idea.'
    - '§4%n, looked at a pigzombie the wrong way.'
    
    void:
    - '§4%n died in The Void.'
    
    wolf:
    - '&4%n became a wolf''s lunch.'
    
    unknown:
    - '§4%n died from unknown causes.'
    - '§4%n has imploded into nothingness'
    - '§4%n has been vaporized'
    - '§4%n died from explosive diarrhea'
    - '§4%n was killed by Chuck Norris'
    - '§4%n was running with scissors...now he runs no more'
    - '§4%n was hit by a falling piano'
    - '§4%n was assasinated by a shuriken headshot from the shadow'
    - '§4%n was barrel rolling...and died'
    - '§4%n was killed by Cthulhu'
    - '§4%n forgot to wear his spacesuit'
    - '§4%n choked on a ham sandwich'
    - '§4%n died at the hands of ninja assassins'
    # ----- Streaks
    
    # format <#of kills> <text to display> %n = player getting the message (in this case, the one on a killstreak).
    
    killstreak:
    - '5:§2[%n] 5 enemies killed! You''re thinning the numbers!'
    - '10:§2[%n] 10 killed! Rampage!'
    - '15:§2[%n] 15 kills! Dominating all kinds of mobs!'
    - '20:§2[%n] 20 kills! Here is your gift card for a killing spree!'
    - '25:§2[%n] So many kills in a row! God Like!'
    
    # format <#of kills> <text to display> %n = player getting the message (in this case, the one on a deathstreak).
    
    deathstreak:
    - '5:§b%n has died, like 5 times.'
    - '10:§b%n, craft a sword or something.'
    - '15:§b%n is dead more than alive.'
    - '20:§b%n is just pathetic.'
    - '30:§b%n is clearly playing Minecraft to see what it says when he dies.'
    
    Is there an error? I think I had to copy/paste this as for some reason my server host (multiplay) kind of "takes over" config files, and kept using an old config file until I found some text on bukkit's website and copy/pasted it.

    I don't mind beta testing, but first I'm not even sure if its a bug or my config is bad.

    If my config is bad, well I can't actually delete my config file and let bukkit regenerate a default one, because of how multiplay works it puts back the old version. So I actually need a good default config file to copy.
     
  4. Offline

    Don Redhorse

    That's what I meant..
    not really.. your wishes are not very easy to implement as it will require more config options as I would guess that not everybody would want freechest but no freesigns or vice versa... hmmm.... let me see.. more important atm are refactoring, tomb integration and bug fixes..

    I will keep it in mind though..
     
  5. Offline

    boytheo

    Hmmm? I don't underestand. My question is quite simple.

    theres a config setting for allow-deathtp, and freesigns and other things.

    Those config settings should apply to everyone, not just to the admin.

    It doesn'tmatter what users want, its what the admin wants that matters :D If the admin (The guy who writes the config file) wants everyone to have freechests, then everyone gets freechests.

    Just like notch wanted us all to need food in minecraft or else we starve. Not everyone wants that, but Notch does, so we get it.

    Not hard to implement at all.

    Just move the code that says "only give this to admins", to "give this to everyone". May even allow you to delete a line or two of code, because now you don't have to check if someone is an op before you give them stuff. Just check the config.


     
  6. Offline

    Don Redhorse

    well...there are not.. only allow-deathtp atm which will override, but no config setting for this for the rest.

    IIRC you asked for freesign but no freechests.. the next person will ask for freechests but no freesigns.. the next person will ask for freesigns for deathtp but not for the tombstone... etc..

    so I will need to make those options configurable via the config, or I do it like notch and just make my own guess and force it upon you..

    so I will take a look into those features but I don't know atm how this will end up being done.. I will keep it in mind during the refactoring and perhaps you get what you want very fast...

    would be cool to know how many other people would like this without permission support...
     
  7. Offline

    boytheo

    Hi Don,

    OK, I think I wasn't very clear. Let me start again.

    I want, all users, OP or not, to have these abilities:

    1) teleport back to last death point, using a specified item.

    2) On death, items are stored in a "Deathchest".

    3) I want the deathchest protected (I use lockette), so only the person who died can pick it up.


    As far as I am aware, ALL OF THESE FEATURES, currently, have options for them, in the config.

    These existing config settings, allow what I wanted for:
    1) allow-deathtp: 'true'
    charge-item: '368'

    2) enable-tombstone: 'true'

    3) noDestroy: 'true'


    So it's not about adding new features. It is about applying existing features, to everyone, not just to ops.

    I imagine your code has this:

    if (player->isOp()) {
    if (config->allowdeathtp()) {
    DeathTP();
    }
    }

    What I want you to do, is this:

    if (config->allowdeathtp()) {
    DeathTP();
    }

    Simple. No new code. But less code.

    Let me repeat. I am not asking for new features! I am saying that your existing features are not being applied to non-ops. But they should be.
     
  8. Offline

    Don Redhorse

    ah... well THAT will be possible... but that would be without "free" stuff.. so no free chest or free sign.. well. let me take a look into it... I'm recoding a lot atm...

    don't expect anything before a RB of CB for MC 1.0 though, as I will also add the new death methods from MC 1.0..

    BTW:

    @ ALL

    I NEED SOME NICE DEATH MESSAGES FOR ENDERMAN, SILVERFISH, etc.... Post some stuff ;-)
     
  9. Offline

    boytheo

    silverfish:
    - '§4%n You can't stuff that many fish into your mouth!'
    - '§4%n activated a silverfish trap'
    - '§4%n's last words: Oh god they're coming out of the walls!'
     
    Don Redhorse likes this.
  10. Offline

    Don Redhorse

    thanks... hope somebody else does also have some ideas... enderman and blaze could need some loving too..
     
  11. Offline

    Sevennemesis

    great plugin. but I have a problem! everything works great except Quickloot. I can use it, but the member can not!. no error message.

    I use PEX.

    thank you
     
  12. Offline

    Don Redhorse

    could you enable debuging in pex? /pex toggle debug

    and take a look at the log when you try to quickloot
     
  13. Offline

    Sevennemesis

    everything is perfectly set up and activated, it does not work :(
     
  14. Offline

    Don Redhorse

    could you post your log on pastebin, with pex debug enabled and the config file too?
     
  15. Offline

    Don Redhorse

    ok.. I have an alpha of DeathTpPlus ready which includes TombStone and Tomb support... so it will not be long till this can be released. I'm already updating the project pages.

    If somebody wants to try it let me know.
     
  16. Offline

    Maxxgold

    Everything works except Killstreaks and Deathstreaks

    I guess the killstreaks are for pvp. You need to set up killstreaks for regular Mobs that would be an awesome feature.

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

    Don Redhorse

    yes it is for PVP ... hmm nice idea...

    should that be configurable? pvp, monster, both?
    different messages for different modes?
     
  18. Offline

    Maxxgold

    Also I would like for my users to not have a chest in their inventory for the Tombstone to be created. As the owner my Tombstone is created no matter if I have a chest or not. Is there an option for this somewhere. I have looked and I don't see it.
     
  19. Offline

    Don Redhorse

    well I guess you have the deathtpplus.tombstone.freechest permission and I guess you would like to have that for your users too?

    I know the permission page is ugly... I have to figure out a way to make it nicer.. http://dev.bukkit.org/server-mods/deathtpplus/pages/permissions/


    as a side note... https://github.com/dredhorse/DeathTpPlus/issues/15
     
  20. Offline

    Maxxgold

    Y
    Yeah I just added the permissions for free sign and free chest. Works great. Everyone really likes this plugin. Once I make sure it's stable with my server and other plugins I will Donate. We donate to all the plugins we use on our server.
     
  21. Offline

    Don Redhorse

    upps... well there is no donate button atm...

    but wait till we get 3.0 out... and thanks for the feedback and praise..
     
  22. Offline

    Maxxgold

    Killstreaks for Mobs and Pvp should be configurable and yes messages for both. Everyone on my server thinks that this is an awesome idea. Everyone likes a good killstreak : )
     
  23. Offline

    erdrickk

    Great plugin! Getting this with deathtp 2.03 and bukkit 1537 I know it needs updating but I thought this might be helpful

    Code:
    2011-12-01 00:05:59 [SEVERE] Could not pass event ENTITY_DEATH to DeathTpPlus
    java.lang.NullPointerException
        at org.simiancage.DeathTpPlus.listeners.DTPEntityListener.getEvent(DTPEntityListener.java:47)
        at org.simiancage.DeathTpPlus.listeners.DTPEntityListener.onEntityDeath(DTPEntityListener.java:120)
        at org.bukkit.plugin.java.JavaPluginLoader$64.execute(JavaPluginLoader.java:707)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
        at org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerDeathEvent(CraftEventFactory.java:320)
        at net.minecraft.server.EntityPlayer.die(EntityPlayer.java:166)
        at net.minecraft.server.EntityLiving.damageEntity(EntityLiving.java:500)
        at net.minecraft.server.EntityHuman.damageEntity(EntityHuman.java:608)
        at net.minecraft.server.EntityPlayer.damageEntity(EntityPlayer.java:208)
        at net.minecraft.server.Explosion.a(Explosion.java:142)
        at net.minecraft.server.World.createExplosion(World.java:1521)
        at net.minecraft.server.WorldServer.createExplosion(WorldServer.java:215)
        at net.minecraft.server.EntityFireball.a(EntityFireball.java:216)
        at net.minecraft.server.EntityFireball.w_(EntityFireball.java:130)
        at net.minecraft.server.World.entityJoinedWorld(World.java:1251)
        at net.minecraft.server.WorldServer.entityJoinedWorld(WorldServer.java:104)
        at net.minecraft.server.World.playerJoinedWorld(World.java:1233)
        at net.minecraft.server.World.tickEntities(World.java:1140)
        at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:507)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:414)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
     
  24. Offline

    Don Redhorse

    you could try 2.99 ALPHA... which has other entity handling so you shouldn't get that....

    as soon as the RB comes out we will integrate the new death methods and release a version... hopefully 3.0 will come out before though.

    ALSO to all!!!!!:

    WE NEED DEATH MESSAGES!!!! Especially for Blaze, Enderdragon, etc... if you have some funny ones... post them..
     
  25. Offline

    erdrickk

    Thanks Don. Do I need to regenerate my config for this Alpha version>? or can I use the 2.03 config?
     
  26. Offline

    Don Redhorse

    Totally new one.. but you will see it isn't that hard to make the necessary changes... but also watch out... it could be that you will need to edit or redo this again when 3.0 comes out... sample / default config is here: http://dev.bukkit.org/server-mods/deathtpplus/pages/configuration/

    the full project page is already updated... I'm sorry about that but it was necessary... I hope to perhaps get a migration method included to move the data from the old version to the new one... but I don't know.

    Also the permissions will change (a little bit) for the old original deathtpplus permissions... to make them inline with the new layout, but I'm trying to make that an easy phase over with some messages in the logs and in chat for the admin that those permissions need to change..
     
  27. Offline

    jasvecht

    If you still need some death messages, I got a few from the old file when I used it. Some are pretty lame, there may be some in it specific to our server which you might not understand...

    Show Spoiler

    fall:
    - '§4%n tripped and fell...down a cliff.'
    - '§4%n leapt before looking.'
    - '§4%n forgot to bring a parachute!'
    - '§4%n learned to fly...briefly...'
    - '§4%n felt the full effect of gravity.'
    - '§4%n just experienced physics in action.'
    - '§4%n fell to his death.'
    - '§4%n forgot to look out below!'
    - '§4%n got a little too close to the edge!'
    - '§4%n, gravity is calling your name!'
    - '§4%n faceplanted into the ground!'
    - '§4%n yells, "Geronimo!"....*thud*'
    - '§4What goes up must come down, right %n?'
    - '§4You do like flying, dont you %n?'
    - '§4%n is apparently incapable of understanding the laws of gravity'
    - '§4%n discovered the world was flat the hard way, shouldn''t have strayed from the path, my son...'
    - '§4%n just did a couragous attempt of crossing the Great Gap between the Plummer Mountains of Ynnek. Well that didn''t work out to well for him...'
    - '§4%n fell off of the Floating Continent'
    - '§4%n doesnt get the difference between a stair and a cliff. Moron.'
    - '§4%n was catching fish for his/her sick uncle... Unfortunately one was poisoned, it killed his/her uncle and he/she jumped off a cliff. EMO EMO EMO!'
    - '§4%n is a fanboy of runescape and decided to be an hero and relieve the world of his presence'

    drowning:
    - '§4%n has drowned.'
    - '§4%n has become one with the ocean!'
    - '§4%n sunk to the bottom of the ocean.'
    - '§4%n went diving but forgot the diving gear!'
    - '§4%n needs swimming lessons.'
    - '§4%n''s lungs have been replaced with H20.'
    - '§4%n forgot to come up for air!'
    - '§4%n is swimming with the fishes!'
    - '§4%n had a surfing accident!'
    - '§4%n tried to walk on water.'
    - '§4%n set a record for holding breath underwater.'
    - '§4%n is a brilliant hacker, he hacked the admin tools and used "//replace air water" Oh sh**... I mean... Oops...'
    - '§4%n was singing in the rain, unfortunately he didnt adapt it to Minecraft... Stupid Notch with his rain through water...'
    - '§4%n drowned himself in a glass of water while trying to prove that he isnt fat... What an idiot... We will need a double decker grave for this one'
    - '§4%n apparently considers himself 65% magikarp. The server kindly disagreed and killed him.'
    - '§4%n thought he should make an elevator in a closed room, poor bastard started from the top...'

    fire:
    - '§4%n burned to death.'
    - '§4%n has been set on fire!'
    - '§4%n is toast! Literally...'
    - '§4%n just got barbequed!'
    - '§4%n forgot to stop, drop, and roll!'
    - '§4%n is extra-crispy!'
    - '§4%n spontaneously combusted!'
    - '§4%n put his hands in the toaster!'
    - '§4%n just got burned!'
    - '§4Have you ever heard of Burnt Numair? Neither had %n...'
    - '§4%n Was a loyal catholic and came to the conclusion the sun might be a bit hot and if it might not switch positions when you rocket to it...'
    - '§4%n was a great fan of Disaster Area, it was his lucky day. He was invited on stage and hurled into the sun by a rocket with the band...'
    - '§4%n Had a faulty improbability drive and ended up in the middle of the sun.'
    - '§4%n became Burnt Numair.'
    - '§4%n played a game of burnt numair IRL with his best friends, guess who got to play the Numair?'

    fire_tick:
    - '§4%n burned to death.'
    - '§4%n has been set on fire!'
    - '§4%n is toast! Literally...'
    - '§4%n just got barbequed!'
    - '§4%n forgot to stop, drop, and roll!'
    - '§4%n likes it extra-crispy!'
    - '§4%n spontaneously combusted!'
    - '§4%n put his hands in the toaster!'
    - '§4%n just got burned!'
    - '§4Have you ever heard of Burnt Numair? Neither had %n...'
    - '§4%n Was a loyal catholic and came to the conclusion the sun might be a bit hot and if it might not switch positions when you rocket to it...'
    - '§4%n was a great fan of Disaster Area, it was his lucky day. He was invited on stage and hurled into the sun by a rocket with the band...'
    - '§4%n Had a faulty improbability drive and ended up in the middle of the sun.'
    - '§4%n became Burnt Numair.'
    - '§4%n played a game of burnt numair IRL with his best friends, guess who got to play the Numair?'

    lava:
    - '§4%n became obsidian.'
    - '§4%n was caught in an active volcanic eruption!'
    - '§4%n tried to swim in a pool of lava.'
    - '§4%n was killed by a lava eruption!'
    - '§4%n was forged into obsidian by molten lava.'
    - '§4%n took a dip in the wrong kind of pool!'
    - '§4%n found out how to encase himself in carbonite.'
    - '§4%n, the floor is lava! The floor is lava!'
    - '§4%n figured he could bathe like we do. Nice thinking...'
    - '§4%n is a total moron who cant even see the difference between a volcano and a geyser... nice going you turd!'
    - '§4%n tried to dig a tunnel under a volcano to escape an eruption...'

    creeper:
    - '§4%n was creeper bombed!'
    - '§4A creeper exploded on %n!'
    - '§4A creeper snuck up on %n!'
    - '§4A creeper tried to make love with %n...mmm.'
    - '§4%n just got the KiSSssss of death!'
    - '§4%n tried to hug a creeper!'
    - '§4%n is frowning like a creeper now!'
    - '§4%n had a nice everything... SSSSSSSssssss'
    - '§4%n fell in love with a creeper, married her, made love to her every night then cheated on her. "Its okay honey... I forgive you... No biggie... SSSSSSssss'
    - '§4%n got kinky with a creeper'

    skeleton:
    - '§4A skeleton shot %n to death!'
    - '§4A%n was on the wrong end of the bow. '
    - '§4A%n has a skeleton in the closet...'
    - '§4%n, strafe the arrows! Strafe the arrows!'
    - '§4A skeleton just got a headshot on %n!'
    - '§4A%n played call of duty black ops with a skeleton... Unsurprisingly he lost.'
    - '§4A cupid threw a love arrow at %n! Wait... Did I say cupid? I mean Skully.'
    - '§4A Arrows <3 %n!'

    spider:
    - '§4%n is all webbed up.'
    - '§4%n got trampled by arachnids!'
    - '§4%n got jumped by a spidah!'
    - '§4Spiders just climbed all over %n!'
    - '§4%n forgot spiders could climb!'
    - '§4%n has a thing for spiders'
    - '§4%n got screwed over by his friendly neighbourhood spiderman...'
    - '§4%n figured he has bones in him, spider didnt really see the connection.'
    - '§4%n asked the wrong spider how to shot web.'

    zombie:
    - '§4%n was punched to death by zombies!'
    - '§4%n was bitten by a zombie!'
    - '§4%n fell to the hunger of the horde!'
    - '§4%n Hasn''t played enough L4D2!'
    - '§4%n couldn''t run faster than the zombie!'
    - '§4%n has zombie cancer!'
    - '§4%n had a bite fetish girlfriend... Oh, I didnt mention? She was a zombie.'
    - '§4%n was a proud employee of Umbrella'

    pvp:
    - '§4%a killed %n using a(n) %i!'
    - '§4%a slays %n with a %i!'
    - '§4%a hunts %n down with a %i!'
    - '§4%n was killed by a %i wielding %a!'
    - '§4%a leaves %n a bloody mess!'
    - '§4%a uses a %i to end %n''s life!'
    - '§4%n collapses due to %i attacks from %a!'
    - '§4%n is now a bloody mess thanks to %a''s %i!'
    - '§4%a beats %n with a %i!'
    - '§4%n was killed by %a''s %i attack!'
    - '§4%a defeats %n with a %i attack!'
    - '§4%a raises a %i and puts and end to %n''s life!'
    - '§4%a took out %n with a %i!'
    - '§4%n was victimised by %a''s %i!'
    - '§4%n was eliminated by %a''s %i!'
    - '§4%a executes %n with a %i!'
    - '§4%a finishes %n with a %i!'
    - '§4%a''s %i has claimed %n as another victim!'
    - '§4%n lost a savage duel to %a!'
    - '§4%a has beaten %n to a pulp!'
    - '§4%a pwns %n in a vicious duel!'
    - '§4Score %a 1 - %n 0!'
    - '§4%a has defeated %n in battle!'
    - '§4%n has been slain by %a!'
    - '§4%a emerges victorious in a duel with %n!'
    - '§4%n has been pwned by %a!'
    - '§4%n was killed by %a!'
    - '§4%n was dominated by %a!'
    - '§4%n was fragged by %a!'
    - '§4%n needs more practice and was killed by %a!'
    - '§4%n was beheaded by %a!'
    - '§4%n made rough kinky love with %a! He didnt survive that though...'
    - '§4%n got trolled by %a!'

    pvp-fists:
    - '§4%a pummeled %n to death'
    - '§4%a crusted %n with his/her bare hands'
    - '§4%a did some pro fisting on %n'
    - '§4%a got %n into marriage. Poor dude.'



    block_explosion:
    - '§4Careful %n, TNT goes boom!'
    - '§4%n was last seen playing with dynamite.'
    - '§4%n exploded into a million pieces!'
    - '§4%n cut the wrong wire!'
    - '§4%n has left his (bloody) mark on the world.'
    - '§4%n was attempting to exterminate gophers with dynamite!'
    - '§4%n was playing landmine hopscotch!'
    - '§4%n stuck his head in a microwave!'
    - '§4%n accidentally the whole thing.'
    - '§4%n liked Justin Bieber. The server didn''t quite like him.'

    contact:
    - '§4%n got a little too close to a cactus!'
    - '§4%n tried to hug a cactus!'
    - '§4%n needs to be more careful around cacti!'
    - '§4%n feels the wrath of cactusjack!'
    - '§4%n learns the results of rubbing a cactus!'
    - '§4%n died from cactus injuries!'
    - '§4%n poked himself with a cactus...and died.'
    - '§4%n ran into some pointy green stuff that wasn''t grass.'
    - '§4%n was distracted by a tumbleweed and died by cactus.'
    - '§4%n was having the time of his life, enjoying himself on the calm, peaceful beach walking towards the awe-inspiring sun... until... 10.000 NEEDLES!!!!!!'
    - '§4%n tried humping a cactusaur and now is the proud owner of 9001 needles.. Wait... 9001?! ITS OVER 9000!!!!!!11!!!!!!11!!!1!111!!!!`1111oneone!'
    - '§4%n likes to stick big pointy green things inside of him.'


    ghast:
    - '§4%n was blown to bits by a ghast.'
    - '§4 Those aren''t babies you hear, %n!'
    - '§4%n was killed by a ghostly hadouken!'
    - '§4%n just got exploded by a fireball!'
    - '§4%n got too comfy in the Nether!'
    - '§4%n got owned by admin abuse'

    slime:
    - '§4A Slime found %n. The slime won.'
    - '§4%n just was playing with slime. The slime ain''t happy.'
    - '§4%n was to slow in Donkey Kong Country: Diddys Kong Quest... right before K-Rool.'

    suffocation:
    - '§4%n suffocated.'
    - '§4%n was looking up while digging!'
    - '§4%n choked to death on earth!'
    - '§4%n tried to sing Friday by Rebecca Black.'

    pigzombie:
    - '§4%n lost a fight against a zombie pig.'
    - '§4%n, touching a zombie pig is never a good idea.'
    - '§4%n, looked at a pigzombie the wrong way.'
    - '§4Zombie pig, zombie pig... does whatever a zombie pig does... (that includes you, %n!)'

    void:
    - '§4%n died in The Void.'
    - '§4%n is forever alone'

    wolf:
    - '&4%n became a wolf''s lunch.'
    - '&4%n doesn''t get just what the difference between a wolf and a pup is.'
    - '&4%n just made a friend out of the PETA.'

    lightning:
    - '&4%n was struck down by Zeus'' bolt.'
    - '&4%n got owned by a certain awesomely awesome amazingly amazing kitty god.'

    unknown:
    - '§4%n died from unknown causes.'
    - '§4%n has imploded into nothingness'
    - '§4%n has been vaporized'
    - '§4%n died from explosive diarrhea'
    - '§4%n was killed by Chuck Norris'
    - '§4%n was running with scissors...now he runs no more'
    - '§4%n was hit by a falling piano'
    - '§4%n was assasinated by a shuriken headshot from the shadow'
    - '§4%n was barrel rolling...and died'
    - '§4%n was killed by Cthulhu'
    - '§4%n forgot to wear his spacesuit'
    - '§4%n choked on a ham sandwich'
    - '§4%n died at the hands of ninja assassins'
    # ----- Streaks

    # format <#of kills> <text to display> %n = player getting the message (in this case, the one on a killstreak).

    killstreak:
    - '2:§2[%n] Had a nice threesome! You know when its good when only you survive it!'
    - '5:§2[%n] 5 enemies killed! You are thinning the numbers!'
    - '10:§2[%n] 10 killed! Rampage!'
    - '15:§2[%n] 15 kills! Dominating all kinds of mobs!'
    - '20:§2[%n] 20 kills! Here is your gift card for a killing spree!'
    - '25:§2[%n] So many kills in a row! Godlike!'
    - '50:§2[%n] 50? Really? Now that is just plain wrong... and dirty... shame on you... screw you... FUCK YOU! NO! I R SERVER, I R NOT 51!! NUUU'
    - '50:§2[%n] 100 fucking kills. You can have admin powers. Now fuck off.'

    # format <#of kills> <text to display> %n = player getting the message (in this case, the one on a deathstreak).

    deathstreak:
    - '2:§b%n is getting owned.'
    - '5:§b%n has died, like 5 times.'
    - '10:§b%n, craft a sword or something.'
    - '15:§b%n is dead more than alive.'
    - '20:§b%n is just pathetic.'
    - '30:§b%n is clearly playing Minecraft just to see what it says when he dies.'


    Most of them are pretty crappy but I am sure you can salvage a few good ones. We had a much better file (wrote one myself, spend days on it) but it was for another plugin :( And we lost it ;(. Also a ton of the originals in there.
     
  28. Offline

    Don Redhorse

    thanks... perhaps you can come up with some lines for Enderman etc... I will look into the ones you posted and they are a nice idea also for others but I think most of them are already in.
     
  29. Offline

    Maxxgold

    I have it set so my users get a free chest and sign on death but when they don't come back for the tombstone it just stays there and never goes away. I have the time to the default 3600 seconds but the chest is still there days later. Is there something I can do to make the chests go away ? Right now my world is getting littered by tombstones all over the place and I'm the only one that can remove them. Love the plugin
     
  30. Offline

    Don Redhorse

    ok... can you make a ticket on devbukkit or even better github... will need to look into that. are you using 2.99 or the older version?
     
  31. Offline

    Maxxgold

    2.99 Made a ticket
     

Share This Page