Inactive [FUN] Fake Death [1.2.5 - 1.3.1]

Discussion in 'Inactive/Unsupported Plugins' started by jbman223, Aug 3, 2012.

  1. Offline

    jbman223

    Death Faker - Fake Your Death:
    Version: v1.0

    This extremely simple plugin allows players to fake their death.

    Features:
    • Broadcasts Fake Death to all People On the Server
    • Fake being killed by another person!
    GET IT ON BUKKITDEV! http://dev.bukkit.org/server-mods/fake-death-1-0-1-3-1/


    http://playsmp.com/plugins/fakedeath.java - Source Code


    Commands
    • /fd - Fakes a player's death. Broadcasts "SENDERNAME died"
    • /fd [string] - Fakes a player's death. Broadcasts "SENDERNAME was slain by [string]"

      Changelog:
    Version 1.0
    • Plugin release
    Upcoming features:
    Version 1.1
    • Config file with option for ops only.
    Version 1.2
    • Permission to use command!
     
  2. Offline

    Luloak2

    Funny idea, but maybe you can set two more options:
    If you "dye", you can teleport youself to another location and other players see the death animation to make it really realistic;)
     
  3. Offline

    SilentTheif-PLM

    May I produce this further?
     
  4. Offline

    jbman223

    I am actually going to keep developing this by myself. Thank you for your interest!
     
  5. Offline

    skore87


    Despite your friendly 'no', he did it anyway... =(
    http://forums.bukkit.org/threads/fun-fakedie-get-capped-1-3-1-r1-0.90602/

    Spoiler... His decompiled code. (open)


    Code:
    // Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov.
    // Jad home page: http://www.kpdus.com/jad.html
    // Decompiler options: packimports(3) 
    // Source File Name:   Main.java
     
    package me.Marc.FakeDie;
     
    import java.util.logging.Logger;
    import org.bukkit.Bukkit;
    import org.bukkit.Server;
    import org.bukkit.command.Command;
    import org.bukkit.command.CommandSender;
    import org.bukkit.plugin.java.JavaPlugin;
     
    public class Main extends JavaPlugin
    {
     
        public Main()
        {
            log = Logger.getLogger("Minecraft");
        }
     
        public void onEnable()
        {
            log.info("[FakeDie] Fake Die Enabled");
            log.info("Plugin made and developed by SilentTheif");
            log.info("All rights reserved!");
            log.info("Version v1.0 - [Minecraft 1.3.1]");
            log.info("Questions reguarding the plugin will be PM'd to SilentTheif");
        }
     
        public void onDisable()
        {
            log.info("[FakeDie] Fake Die Disabled");
            log.info("Version v1.0 - [Minecraft 1.3.1]");
        }
     
        public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String args[])
        {
            if(commandLabel.equalsIgnoreCase("fd"))
                if(args.length == 1)
                    Bukkit.getServer().broadcastMessage((new StringBuilder(String.valueOf(sender.getName()))).append(" was capped by ").append(args[0]).toString());
                else
                    Bukkit.getServer().broadcastMessage((new StringBuilder(String.valueOf(sender.getName()))).append(" got capped!").toString());
            return false;
        }
     
        private Logger log;
    }
    
     
  6. Offline

    jbman223

    yes... I noticed.
     
  7. Offline

    jbman223

    Now available on bukkitdev
     
  8. Offline

    korikisulda

    And he did so illegally; the source code was posted with no licence attached, therefore under copyright law it's effectively all rights reserved.....
     
    Jozeth likes this.
  9. Offline

    jbman223

    Well he deleted his plugin. Thankfully!
     
  10. Offline

    korikisulda

    And all ends well :D.
     
  11. Offline

    jbman223


    Yes. Thanks everybody for the support!
     
  12. Offline

    jbman223

    Bump. Are mods even still approving?
     
  13. Love it, but I am not wasting my space for it, it'sa bit useless, I already got too many plugins....
     

Share This Page