Minecraft Crash on Command and PvP Fishing Rod Fixing?

Discussion in 'Plugin Development' started by JeykoExample, Sep 21, 2014.

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

    JeykoExample

    Hello Guys :) ,

    i have 2 Questions to you:

    1. Is there a Way to Crash a Players Minecraft on Command, like
    PHP:
    /crashminecraft <Player>
    2. Is there a Way to fix the Bug, when you put off the Delay between changing a Slot and hitting a Player after or something like dat... and to fix the Fishing Rod Bug so when you use the Fishing Rod and the change to your sword and start hitting that the Fishing Rod still makes Damage? (It's a Player vs Player Glitch/Bug)

    Im German and Im very sorry, if my English is bad....

    Thanks a LOT!

    Alex :)
     
  2. Offline

    ProMCKingz

    JeykoExample
    Why would you want to crash someones client?
     
  3. Offline

    JeykoExample

    ProMCKingz Just asking cuz i saw it on a Server..
     
  4. Offline

    Skionz

    JeykoExample Ive found that if you send blockcrack or iconcrack particle packets with a block that doesn't exist it crashes the client.
     
  5. Offline

    JeykoExample

    And how can i do this :D
     
  6. Offline

    jpjunho

    JeykoExample
    It's very easy to crash someone.
    You can use this here:
    Code:java
    1. PacketPlayOutSpawnEntityLiving pac = new PacketPlayOutSpawnEntityLiving(((CraftPlayer)pl).getHandle());
    2. ((CraftPlayer)pl).getHandle().playerConnection.sendPacket(pac);

    Note that pl is a Player variable
     
  7. Offline

    JeykoExample

    Skionz And have u heard something about the Fishing Rod or changing Slots Bug Delay thingy?
     
  8. Offline

    ProMCKingz

    JeykoExample
    There are many ways you can perform this. One way, the best one. Is to send a mass of packets into the client. This will eventually cause the client to over perform and crash. And the fishing rod should be simple. All you need to do, is verify if the user is holding it, and set the damage, this should simply work
     
  9. Offline

    Skionz

  10. Offline

    jpjunho

    ProMCKingz
    You mean packets right?
    And the way you're proposing could lag the server
     
  11. Offline

    JeykoExample

    jpjunho Thanks the Crash thing works. And did u have heard about the Fishing Rod Bug Glitch Change Slot Thing Delay :D
     
  12. Offline

    jpjunho

Thread Status:
Not open for further replies.

Share This Page