Request - Creeper Disguise

Discussion in 'Archived: Plugin Requests' started by CryADsisAM, Nov 6, 2011.

  1. Offline

    CryADsisAM

    Plugin Request - Creeper Disguise
    -------------------------------------------------
    I still have the "MobDisguise" plugin and all I can say that it is awesome. With this plugin I tried
    to blend with other mobs to hide myself from other players but the problem was the players could
    easily find me. (Because some mobs started attacking me,...)


    I got an idea for a plugin that will disguise you as a creeper and you will have a chance to explode
    or just make some sounds. Other mobs will ignore you and won't attack you. ;)

    There was a mod like this for singleplayer too but it didn't work for me.






    Commands should be short. And for the explosion there should be a binded key. (ex.: Hold to explode)

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

    Fallen_Advent

    Most likely having sounds and such would require that we make this plugin for spout, I dont know if I am right, but making yourself invisible to mobs is really easy when it comes to coding,

    I would be willing to take this on, But I am not experienced enough to get the sounds to work properly, I will get into contact with the developer of MobDisguise if you want and ask him if I can add this feature to his/her plugin if it hasn't been added already
     
  3. Offline

    user_43347

    Well, I migh to this. A simple command to explode and few lines of code, however the sound can't be done with spout which is something I'm not interested in adding.
     
  4. Offline

    morshu9001

    There is one that disguises you and makes it so mobs don't attack you. It works for any mob, but you can't blow up :(
    I forget what it was called -- I think MobDisguise or something.
     
  5. Offline

    user_43347

    Edit: got explosion and mod ignorance done, now to add the mob disguise API and do some magic :D
     
    ArcheCane likes this.
  6. Offline

    acuddlyheadcrab

    Whatcha doin?
     
  7. Offline

    user_43347

    Q. I want to be able to have abilities when disguised, i.e creepers explode.
    • A. Not going to do it.

    The OP

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

    CryADsisAM

    I had that combust plugin a while ago - if you type /explode - you will explode but I want this command be triggered by pressing something (because it takes too long to type).

    I saw another plugin called Panix - that had something like this. The plugin binds "P" and "H" to perform a command for you when pressed. I just want to put these two plugins together so when I click "P" or any other key - I will explode.
     
  9. Offline

    iPwnzor

  10. Offline

    user_43347

  11. Offline

    acuddlyheadcrab

    @steaks4uce
    So how did you do the explode command?
     
  12. Offline

    PatrickFreed

    I actually implemented this in mobfight where you right click with sulphur as a creeper to explode. I can make a separate plugin for it if you'd like.
     
  13. Offline

    user_43347

    The end bit gets you out of the situation without a death message and allows you to do it again without the mess of more commands.

    Code:
    public boolean onCommand(CommandSender sender) {
       if (sender instanceof Player) {
          Player p = (Player)sender;
          if (p.hasPermission("PretendCreeper.Explode") {
             World w = p.getWorld();
             w.createExplosion(p.getLocation(), 2);
             p.teleport(w.getSpawnPoint());
          }
       }
    }
     
  14. Offline

    acuddlyheadcrab

    Ah, so it's not the actual creeper explosion.
     

Share This Page