Custom 'Difficulty' Plugin

Discussion in 'Archived: Plugin Requests' started by SwordsMiner, Jul 6, 2012.

  1. Offline

    SwordsMiner

    So i want a Hardcore Server. But not one that kicks people on death. I just want it to be "Hardcore"

    So if this is possible, I have this on my wishlist:

    Diffrent abent, To make it spooky,
    Zombies and skelis and walk in sunlight.
    Endermen and spiders are still hostile in sunlight
    Endermen spawn more frequently
    Regen is a biitt slower.
    All uncooked food has a chance to poision you,
    Zombie flesh makes you derp or somthing ridiculous

    Offtopic features that would be nice:
    Mobs cant come in the spawn region


    Thats pretty much all. The server is on Hard Mode ATM. so its still pretty hard
    IP: 108.93.206.24

    -SwordsMiner :)
     
  2. Offline

    SwordsMiner

  3. Offline

    Gawdzahh

    Partly, In development of something like this, that will increase zombies alot and some other awesome features.
     
  4. Offline

    Deathmarine

    I have a plugin I'm developing that will increase/decrease the speed of all mobs with factors like type of damage vs damage velocity multiplier. Allow some mobs to ignore you and others that will stalk you. Add a configurable firetick rate for daylight as well as being able to spawn in sunlight. However in hind site. You'll receive more xp per kill. As for the zombie flesh. Yah I could make the character wig out if he eats it. And the poisoning is a great idea.

    I'm adding a backpack and a exp level eating super sprint as well.
     
  5. Offline

    SwordsMiner

  6. Offline

    TheFluffey

    When will this plugin be out?
     
  7. Offline

    Deathmarine

    Still kinda working on it. I was slightly distracted.
     
  8. Offline

    AeroFreak

  9. Offline

    Deathmarine

    Already way ahead of yah.

    Code:java
    1.  
    2. @EventHandler
    3. public void onPlayerRightClickEntity(PlayerInteractEvent event){
    4. if(event.getAction().equals(Action.RIGHT_CLICK_AIR)||event.getAction().equals(Action.RIGHT_CLICK_BLOCK)){
    5. ItemStack hand = event.getPlayer().getItemInHand();
    6. if(hand.getTypeId() == 367){
    7. if(hand.getAmount() >= 1){
    8. event.setCancelled(true);
    9. event.getPlayer().addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, event.getPlayer().getLevel()*100, 2));
    10. event.getPlayer().addPotionEffect(new PotionEffect(PotionEffectType.CONFUSION, event.getPlayer().getLevel()*100, 2));
    11. if(hand.getAmount() == 1){
    12. event.getPlayer().setItemInHand(null);
    13. }else{
    14. hand.setAmount(hand.getAmount() - 1);
    15. }
    16. return;
    17. }
    18. }
    19. }
    20. }
    21. [/code]
    22.  
    23. Alright so here it is.....
    24.  
    25. Source:
    26. [URL]https://github.com/deathmarine/Hardcore[/URL]
    27. Download:
    28. [URL]https://github.com/downloads/deathmarine/Hardcore/Hardcore.jar[/URL]
    29. No commands:
    30.  
    31. Info:
    32. Mobs now spawn on a hundred thousand to 1 ratio.
    33. Mobs do not die in sun light but are not spawned in day light.
    34. Some mobs will when targeted will enter rage/berzerk mode. This mode will allow the mob to teleport on top of you. There is a 0.025 chance that they will become enraged. Also while in this mode, mobs will deal damage double damage and you will deal half damage. While enraged the mobs will have flames surrounding them.
    35. There is a 1 in 5 chance that a spawned creeper will be a charged creeper.
    36. If you use command /backpack you will have your very own personal storage that will be saved after death. With the amount of levels you gain you can use your sprint function to use your levels as speed and jump height.
    37. If you kill a rage/mode mob you have a 1 in 190 chance of receiving a special tool with an enchantment.
    38.  
    39. BE ADVISE THIS IS FUN AND ENTERTAINING BUT IS EXTREMELY HARD. Use to your own caution.
    40.  
    41. EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 26, 2016
    AeroFreak likes this.
  10. Offline

    AeroFreak

    Looks like you beat me to it :D
     
  11. Offline

    SwordsMiner

  12. Offline

    np98765

    Deathmarine 's plugin is the most hardcore Hardcore you will ever witness. ;)
     
    Deathmarine likes this.
  13. Offline

    izak12345678910

    Can you add a feature to change speed of a mob?
     
  14. Offline

    Deathmarine

    Sure can. I'm a little side tracked, atm but Yah I will. I'm making a night of the living dead plugin right now based off Hardcore.
     
  15. Offline

    AeroFreak

    Well not rly, there's always a tougher situation out there, a new challenge to conquer, that's my motto. :D
     
  16. Offline

    izak12345678910

    Ok, cool are you gonna release on BukkitDev
     
  17. Offline

    Deathmarine

    Hardcore or the NightOfTheLivingDead plugin?
     
  18. Off topic: Why is your server whitelisted? It's fun!
    On topic: I think NightOfTheLivingDead.
     
  19. Offline

    Deathmarine

  20. Oh yea that dumb exploit.
     

Share This Page