Not sure mining with TNT is really abuse, I mean, its actually realistic, and gunpowder is a rarer to obtain than stone, and even iron. Assuming wood and sand are both readily available (which if replanting and not building large glass structures, they should be), and assuming you dig 2 blocks deep before planting the TNT to maximise it, you get 5 blocks removed per unit of black powder, while you get <22 per block of stone, which is the more available resource anyway ('scuse the redundancy, did the maths in my head anyway, and thought I'd record it.) You also will collect stone whilst mining out the hall to replace that used. --The Sero 16:18, 30 August 2010 (PDT)
- TNT mining is kind of dumb to do, cause you blow up any ore thats in its way.Toadbert
- The whole part about destroying the ore in the way is a big problem, but it could be useful for clearing large chunks of less valuable blocks (gravel, dirt, etc.) But yeah, not good for mining for things you actually want. -Lunar180 17:18, 27 September 2010 (PST)
I just like using it to clear hills and things to flatten the land for projects. It's really satisfying to see a hill blow up in seconds instead of being destroyed in minutes :D Mybabypetghast 20:37, 26 July 2011 (UTC)
Mining with TNT
I added a small section about mining with TNT, and which ores will and won't be destroyed. It needs more experimentation, though, so feel free to add to or correct it. After more tests I found that my earlier theory didn't hold up, as gold ore and iron ore can also occasionally be found in the debris. LTK 70 00:34, 19 October 2010 (UTC)
I've been doing more tests on the percentage of blocks destroyed by an explosion. I demolished a 3x3x3 block of iron ore with TNT in the middle ten times, and on average I got 32.3% blocks back, the highest being 14 and the lowest being 5 out of 26. I will see if this average also counts for other block types, but for now it seems that the destruction rate of blocks is about 2/3 on average. It would be most helpful if others experimented on this as well. LTK 70 17:19, 21 October 2010 (CDT)
Blocks' TNT resistance
Someone should try to get the strength of special blocks (fences, doors, etc.). I'm going to try to test the strength of furnaces and crafting tables. :D PurpleKiwi 06:45, 24 October 2010 (UTC)
I just tested the crafting table, furnace, wooden door, and sapling. I can't really test out saplings since it can only be put on soil (and breaks if the soil breaks). PurpleKiwi 07:32, 24 October 2010 (UTC)
Risugami, a modder, has made a chart of the real resistance values used in the game's code, and give a small explanation of how they're used. What we need now, is to know what the 'damage' value of TNT is, in regards to this temporary health, and Creepers too, since their explosions are weaker, and how the damage dissipates with distance. Also, blowing up obsidian with TNT is fun. CyborgDragon 20:50, 24 October 2010 (CDT)
- How much TNT do you need to destroy Obsidian? PurpleKiwi 22:56, 24 October 2010 (CDT)
- Not sure of the exact amount, I placed a hollow 3x3 tower, up to ground level, of TNT on top of the obsidian, then used redstone to activate as much as possible at once. Sure enough about 4 blocks of obsidian were vaporized. CyborgDragon 07:26, 25 October 2010 (CDT)
- The damage of TNT is at least 37.5 (it goes through a bookshelf and then destroys a block of stone), with an upper bound (assuming that damage doesn't fall off because of distance) of 42.5 (it goes through a chest, but then can't break the stone behind it). As damage does seem to fall off over distance, that upper bound is invalid, but if we can figure out how damage falls off with distance, we could use that to obtain a better figure. Calfuris 22:23, 29 October 2010 (CDT)
- The damage does fall off with distance. Ary31415 15:39, 9 June 2011 (UTC)
- I wonder how you'd test Creeper explosions... Imagining it makes me laugh. Creepers can't destroy furnaces. A creeper destroyed the top part of my underground mini-base, but it couldn't penetrate the furnace-lined basement. Now I use furnaces as building material.PurpleKiwi! 03:41, 30 October 2010 (UTC)
So... in theory... One can destroy bedrock with unobtainable amounts of TNT?
- The TNT resistance is very confusing, does this mean 6000 blocks of obsidian will be blown up by tnt? Flowers are impervious to tnt cause they have 0?Toadbert
- This is because the term resistance is being defined two different and completely opposite ways. I've tried to make it clearer but some of the block pages need updating. See my posts on this page under "Theory on TNT resisitance weirdness". --XipXoom 23:53, 14 November 2010 (UTC)
Is this really a bug?
I think that the fact that you can use the TNT to make an arrow cannon may be intentional, should this be moved to a trivia section? Oa10712 18:24, 30 October 2010 (UTC)
Theory on TNT resisitance weirdness
Notch probably didnt want his work to be tampered with in any way, which may have been one of the reasons (the following is quite likely) he converted down to java, to make it hard to work with. The resistances are probably based on exponents or have some trick math hidden in there.
maybe the server was modded, but ive been a dozen tnt blow up a good amount of admium. A box of it was build around me, of unknow size.
- Please sign your posts with ~~~~ at the end. It sounds like the server was modded. There is no 'converting down to java'. Its the native language the game is programmed in. Also the code is run through an automatic obfuscation program. He doesn't need to do any 'tricky math' or the like to hide things further. That said, its relatively simple to reverse engineer the data. Frankly, and I'm not trying to be confrontational or demeaning here, I'm more willing to believe the data people have pulled from the internal tables is right over your experiences on someone's server destroying bedrock (which is supposed to be indestructible). --XipXoom 10:27, 13 November 2010 (CST)
- I've edited the tables to use the term "Temporary Health" instead of "Resistance". The way the term resistance was used on this page and the ones in the block property pages were mutually exclusive and appearing to confuse people. For instance, depending on which definition you used, a single block of TNT would either destroy 30 cobblestone placed next to it or just one. Furthermore the TNT resistance on some of the block pages needs to be redone as they're using health values instead of resistance (see the obsidian page). --XipXoom 10:38, 13 November 2010 (CST)
Sorting TNT resistance table
I just sorted the TNT resistance table by the resistance value, since it didn't seem to be in any particular useful order already. This is the Perl program I used on the wikitext to get the rough sorted order before adding the column breaks:
perl -wne 'if (($name,$res) = /^\|(.*?) \|\| (.*?)\s*$/) { $num = $res; $num =~ s/,| \(will ignite\)//g; push @d, [$name,$res,$num] } elsif (/^\|-$/) { } else { push @other, $_; } END { @d = sort {$b->[2] <=> $a->[2] or $a->[0] cmp $b->[0]} @d; for (@d) {print "|$$_[0] || $$_[1]\n|-\n" } print for sort @other;}'
—KPReid 09:12, 16 November 2010 (CST)
"Stationary Water/Lava"?
Does this mean the SOURCE BLOCK? 99seconds 23:43, 17 November 2010 (UTC)
Yes, a stationary liquid is the Source Block LeopardStar The Leader
Additional note to 3x3 closed air tnt explosion,
if you put a 1 block air space between the tnt and the surface wall, the explosion damage is increased by 2 blocks deep. can anyone else confirm this?
Drift Mining and Appeal to Admins
Perhaps there should be a discussion rather than constant edits. Why is drift mining not being permitted to remain on the page? Much like regular exploratory mining, drift mining is just an efficient type of mining. I have read in the past that these pages do not exist because 'they should be common sense' which seems like a silly argument. The wiki is meant for new players, not old ones. There SHOULD be basic information on a wiki. That's why it exists. The way the wiki is run now seems more like an exercise in stroking the admins' egos. One rule after another is made without any discussion among the community that actually uses the wiki. Sure, there have ben a lot of crappy videos added to pages, but they generally get removed! The entire point of wikis is that they are self-policing and that anyone can edit them, not that a few moderators have to do everything.
I vote let drift mining stay. It was a new concept to me, and I had to google a forum thread to learn more about it. If you really want the wiki to reflect the knowledge base of the community, let the community add knowledge. --JohnnyMadhouse 17:14, 25 December 2010 (CST)
- Wait, what is drift mining? Ary31415 15:42, 9 June 2011 (UTC)
- If we allow articles like this we're pretty much opening a door to all other kind of "techniques" that are really just lame attempts at becoming popular. For example, Quatromining, Doublemining, Speedymining, Slowmining, Craftmining, Partnermining, Familymining, Oremining, Fishmining (???), etc. etc. etc.--Quatroking - Garble Garble! 18:28, 25 December 2010 (CST)
- No matter the name, if the technique is useful/effective it should be mentioned. Drift Mining might not be the technically correct term, but it is an effective mining technique involving TNT usage. And it's funny to hear that wiki on a game called Minecraft should not include information on different mining techniques. Slider2k 20:22, 25 December 2010 (CST)
- Why not have an article devoted to specialty mining techniques? Title it 'Mining' or something similar and let it fill the same function as the Megaproject page [1] on the Dwarf Fortress wiki. People can add their own special versions of mining to the page, the word 'Mining' can be linked to it, and everyone can be satisfied. There are already mining tutorials in place, but the tutorials pages are somewhat difficult to find despite being linked to on the front page. A mining page would offer the oppourtunity for SCIENCE about the efficiency of drift mining and branch tunneling and the depth of various minerals all on one page, and may offer insights to new players that they would otherwise need to read the forums for. I think it's totally okay to have some redundant information on the wiki: after all, having the information in only one place results in people not finding it, asking about it, and then often being rudely directed to it by someone who has played the game a lot longer.
- EDIT Re: people trying to become popular by posting new types of mining. I don't think that will be an issue. If a technique is crappy, it will get removed. If a technique is good and the editor who posts it names it after themselves, it will rapidly acquire a more generic name like 'drift mining'. Most things have a way of working themselves out. The embark profiles page on the dwarf fortress wiki used to include users names, but has shifted towards description of the gimmicks and handicaps involved. Honestly, the name of something doesn't matter to me as long as it works. I'm not going to start a new game hoping to use MINECRAFTFAN24's ABYSSALTREE SUPERBRANCHTUNNELING METHOD. I'll start it and dig in 1x2 tunnels without that name ever crossing my mind. --JohnnyMadhouse 21:56, 25 December 2010 (CST)
- Good to hear your concerns, JohnnyMadhouse. The wiki is supposed to be a universal knowledge repository. Why some relevant knowledge is discarded or should be discarded is beyond me. It is frustrating to see your contributes being deleted without explanation. The role of admins is to help categorize and organize knowledge - not to discard it. Slider2k 20:22, 25 December 2010 (CST)
- Part of their roles is also to enforce the rules. If you don't like the rules, then try to get the community to change them. Also, a lot of categorizing and organizing is deleting things that are in the wrong places. Oh, and there is a place for your ideas (if they're good/unique enough), and that's under Tutorials, particularly Tutorials/Mining_Techniques --JonTheMon 00:27, 27 December 2010 (CST)
- The problem with that being that the admins make the rules and ban anyone who changes them! The community is trying to change the rules, but they are running into a brick wall composed of adminium! --JohnnyMadhouse 03:41, 28 December 2010 (UTC)
- Ban anyone who's changing them, or banning those who break the current rules (you can't just act on a new ruleset before it's accepted by the community). If you can muster enough support on Minecraft Wiki talk:Wiki Rules, you can get them changed. But it's not gonna happen overnight, you'll need some patience and persistence. --JonTheMon 05:24, 28 December 2010 (UTC)
- The problem with that being that the admins make the rules and ban anyone who changes them! The community is trying to change the rules, but they are running into a brick wall composed of adminium! --JohnnyMadhouse 03:41, 28 December 2010 (UTC)
- Part of their roles is also to enforce the rules. If you don't like the rules, then try to get the community to change them. Also, a lot of categorizing and organizing is deleting things that are in the wrong places. Oh, and there is a place for your ideas (if they're good/unique enough), and that's under Tutorials, particularly Tutorials/Mining_Techniques --JonTheMon 00:27, 27 December 2010 (CST)
Admins, please stop edit war and start discussion WP:3RR. Now the recent history of TNT is totally a mess. Xfs 03:07, 28 December 2010 (UTC)
- This isn't wikipedia. --JonTheMon 21:35, 27 December 2010 (CST)
- This is a common sense that any logical person would conclude. Edit summary is not the place for discussion. Xfs 22:18, 27 December 2010 (CST)
Indestructible Obsidian?
I saw that on the article obsidian was listed as indestructible from TNT explosions, and whilst it may be in every practical sense, I was having a bit of an InvEdit muck around one day and found that surrounding one block of obsidian on all sides with TNT (including diagonals) proved sufficient to destroy it. Can anyone confirm this, and if so should the article be edited considering this is a pretty unlikely scenario in terms of unhacked gameplay? Troagador 23:24, 18 January 2011 (UTC)
Made a 3x3x3 cube of TNT with obsidian in the center lit it off and the obsidain still remained
I think he had that mod that made TNT WAAAAAAAY more powerful. Pressthebutton 15:21, 25 December 2011 (UTC)
Radians or degrees?
Perhaps nitpicking, but I noticed in the paragraph quoted below that it states that the random direction is between 0 and 2pi degrees. Wouldn't this be radians, rather than degrees? Should, unless I'm missing something, be changed to "[0, 2π] radians" or "[0, 360] degrees"
Once spawned, the primed TNT is given a 0.2 vertical velocity, and a 0.02 horizontal velocity with a random direction in [0, 2π] degree. It was supposed to be random in all direction, but Notch mixed up degrees with radians, as a result the primed TNT will always start to move towards east and slightly north. If not colliding or interacting with anything except the ground, it will travel 0.166m horizontally on a flat ground before it stops and explodes.
Turamarth 21:13, 28 January 2011 (UTC)
TNT is not a good way to power mine carts.
i built an aircraft runway and the first thing i did with it was lay some track, put a mine cart at one end with TNT. The mine cart and a good part of the run way (which was in the air) where destroyed.
Lava Ember
Since the Lava page states that lava embers are purely aesthetic and cannot cause fires, I will go ahead and remove the trivia where it states that embers can set off TNT. Faren22 22:21, 3 May 2011 (UTC)
Cannot Place Pressure Plates on TNT?
So I was trying to make a TNT Trap, but I can't place Pressure plates on TNT anymore. Did they change it in an update or is it bugged?
Tested this in Single Player and SMP, no mods installed but Higher Resolution Texture packs.
- -Put sand on the TNT. Both blocks will fall wen activated 95.18.185.38 14:05, 12 September 2011 (UTC)
You can also use dirt or something instead of sand so the pressure plate doesn't turn into an item when you step on it. Very useful tip for me. Pressthebutton 15:23, 25 December 2011 (UTC)
bug
In 1.8.1 multiplayer, tnt isn't floating, when i try to build a tnt cannon.
It's not a bug if the TNT wasn't sitting on a block, dude. Pressthebutton 15:24, 25 December 2011 (UTC)
Lesser push in 1.8
Since 1.8 my TNT cannons seem to have trouble firing other primed tnt. It seems that explosions dosen't push primed TNT as much as before (may be intentional to make big explosions with many TNT blocks spread less?). When i try firing myself with the cannon i get fired very long so it only affects primed TNT? Anyone can confirm this?
natural TNT?
ok, today i was playing in smp with my friends, and we saw a VERY BIG, natural formation of TNT, and the tnt was in place of the bedrock, thats a bug or what? we made it explode and the server chashes, here´s the pic [2]
sry for the bad english
- I checked the photo. 1) Your Tnt is in a nice square. I think someone used some kind of replace command in SMP, which exactly creates such things. - No, Natural TNT does NOT exists. Swpe 19:18, 10 October 2011 (UTC)
I think i found natural TNT in Creative Singleplayer. It is a VERY rare bug or WHAT?!
sounds like one crazy bug Pressthebutton 15:25, 25 December 2011 (UTC)
Lava does not stop strucual damage
I use lava buckets to kill mobs and a creeper blew up my lava source and destroyed a bunch of the land around me. it was an unpowered creeper. 76.253.135.136 19:10, 10 October 2011 (UTC)
White TNT Glitch
Is it a glitch, or is it supposed to happen? Example vids: http://www.youtube.com/watch?v=jUBDC3hW7xE http://www.youtube.com/watch?v=RiGqJjvTGZs http://www.youtube.com/watch?v=0FksBAN9Fj4&feature=relmfu [See what Fumblemore says at 3:41] Pressthebutton 15:15, 25 December 2011 (UTC)
TNT is transparent
"Transparency: No" It should be YES. It's a bug, but it's true. It got changed back after I changed it. HotdogPi Come to my page! 02:46, 30 March 2012 (UTC)
TNT in classic
I havent bought minecraft yet, so im playing the free, classic version of the game. Is it possible to detonate a TNT in the classic version? if so, how? Maxwell the scribblenaut 02:34, 21 April 2012 (UTC)
- No, the only physics in Classic are flowing water/lava (which works drastically differently from Minecraft Alpha and later) and falling sand/gravel. 「ディノ奴千?!」? · ☎ Dinoguy1000 17:58, 21 April 2012 (UTC)
There MAY be some MISTAKES in the Trivia
It refers that "An activated or "primed" block of TNT will fall 77 blocks before exploding"while I found another article describing the Motion of entities in Entity,and through the data that article provides,we can get the answer that a primed TNT will explode after falling 32 blocks away,not 77!!!
This criticle discrepancy makes me very confused.There anyone knows which is right? --Woshizhu99
- Experimental tests show that 77 blocks is accurate. My calculations come out close to that as well. I'm not sure how you came up with the 32 block distance. -- Orthotope 18:59, 5 May 2012 (UTC)
- The acceleration of tnt is 0.04 blocks/tic2 and the tnt will explode 40 tics after primed,then according to the formule H=gt2/2(the tnt won't reach the terminal velocity in 40 tics),we can get the answer 32 blocks.Anything wrong in my calculation?? --Woshizhu99 16:53,6 May 2012(UTC+8)
- There are 20 game ticks per second, so the fuse lasts 80 ticks, not 40. (Confusingly, redstone circuits run at 10 ticks per second.) -- Orthotope 10:24, 6 May 2012 (UTC)
TNT fails to move people in 1.2.5?
So, I haven't played Minecraft in a while (like, 1.0?). I come back to try build stuff witha friend, experimenting with various ways to make elevators in vanilla minecraft. We tried a TNT-powered cannon, to see if it could shoot us up to a particular location, but for some reason, there's no force in it. We take damage, but nothing else happens. TNT cannons themselves still work to fling TNT into the side of my floating island, a test I now regret, but for some reason, players not. Not even with a much larger amount of TNT (6 racks of 7 blocks) all stacked up right next to him by another charge. What am I doing wrong? --EasilyDistracted 22:58, 13 May 2012 (UTC)
Obsidian Glitch?
I placed two TNT in a 1X2 rectangle, and did it like below. I surrounded that with dirt for about 4 blocks in each direction. I would detonate the back TNT, and quickly place the obsidian. The explosion would set of the other TNT, which would destroy some of the dirt. It it because there is an opening in the back? Is it because the corners aren't filled? Can the explosion go through the TNT? I don't know. 72.209.199.2 21:24, 14 May 2012 (UTC)
Side: Front:
AOO O
ATTO OTO
AOO O
(like this for two deep, then an obsidian cap in the middle row at the end)
O: Obsidian T: TNT