Need Developer for a new Plugin!

Discussion in 'Archived: Plugin Requests' started by MrGermanrain, Jan 4, 2013.

  1. Offline

    MrGermanrain

    Suggested name: TnTexplode

    What I want: I need a plugin where when you place down a TnT, it explodes all by itself without a torch or lever, It just explodes by itself.

    I also need it so that it cant hurt the person who placed it, but it can hurt others.

    Another cool feature would be that it does not break the environment!

    Ideas for commands: I dont really need a command but if you really want one I would suggest:

    /TnT safe {on/off} Allows/Disallows that the environment can be broken.
    /TnT explode {on/off} Allows/Disallows the insta-explode feature
    /TnT selfprot {on/off} Protects you from your own TnT you place (not other peoples)

    Ideas for permissions: Once again, I dont really need this, but feel free to add it!

    TnTexplode.safe Makes it so that your TnT does not harm the land!
    TnTexplode.explode Allows you to use the insta explode feature
    TnTexplode.selfprot Allows you to be protected from your own TnT!

    When I'd like it by: The next 7 days.
     
  2. Offline

    penguinben

    I have a feeling that there is another plugin that already does this, I shall look for it now.
     
  3. Offline

    MrGermanrain

    thanks so much :D Tell me if you find it! ;)

    If someone would make this It would make me happy :D

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

    SgtStud

    I will start on this.
     
  5. Offline

    MrGermanrain

    Thanks sooo much :D you dont know what this means for me and my server!
     
  6. Offline

    1mpre55

    Please link us to where it says that if you really need the plugin you can break the rules and accuse other users of trolling when they point out that you broke those rules. You repeatedly showed us that you didn't read the [READ ME FIRST] Plugin Requests Guide thoroughly, and you expect us to read your request and put up with your shameless bumping? Yes, we understand that you really need this, but so do most other people that submit requests here. Also, re-read this:
     
  7. Offline

    MrGermanrain

    Ok I admit, I did bump a little too much, I am sorry If this has hurt anyone.

    I just want everyone to look at 1 thing.
    the past 500 msgs that plsGooby has wrote.
    http://forums.bukkit.org/search/15854840/
     
    1mpre55 likes this.
  8. Offline

    Necrodoom

    Bukkit Forums - Error
    The requested search could not be found.
     
  9. Offline

    Hoolean

    Code:
    public class InstantTnT extends JavaPlugin implements Listener{
        @Override
        public void onEnable() {
            getServer().getPluginManager().registerEvents(this, this);
        }
     
        @EventHandler
        public void onBlockPlace(BlockPlaceEvent event) {
            if(event.getBlock().getType() == Material.TNT) { event.getBlock().getWorld().spawnEntity(event.getBlock().getLocation(), EntityType.TNT_PRIMED);event.setCancelled(true);};
        }
    }
    Now somebody less lazy than me can compile :p
     
  10. Offline

    NuclearW

    MrGermanrain
    Please do not make monetary offers, I've cleaned up this thread instead of locking it outright, but please don't do it again. Please also don't lash out at users who are informing you of the rules.
     
  11. Offline

    youngbawss22

    This seems easy enough. If SgtStud doesn't do it, I could.
     
  12. Offline

    SgtStud

    Well I finished the plugin.
     
  13. Offline

    youngbawss22

    Never mind then :p.
     

Share This Page