text stringlengths 148 3k |
|---|
Minecraft wiki entry for Clock, associated text: Although "pulser" is the correct spelling for any general circuit that produces pulses, the traditional spelling of a clock circuit created from short-circuited redstone torches is "rapid pulsar". |
Minecraft wiki entry for Block_update, associated text: Redstone comparators can use certain blocks and entities as power sources, and in turn, the blocks or entities send comparator updates (i.e. Block entity updates, Update neighbour for output signal) when changing. |
Minecraft wiki entry for Development_versions, associated text: When placed inside an item frame, the map will now display the item frame again, but still on a full block scale. |
Minecraft wiki entry for Miscellaneous, associated text: A multiplex circuit transmits multiple signals on a single transmission line by using a control line to choose which signal should be transmitted or received. The control line may be either clocked, to transmit the signals sequentially, or selection, to simply choose which signal to transmit. The control line(s) can also be substituted with two synchronized pulse generating clocks. Then only one line is necessary. However, they have to stay synchronized for the transmission to be correct. This can be done using a daylight sensor. |
Minecraft wiki entry for Processor_list, associated text: : Must be between 0.0 and 1.0. Each block in the structure generates an integrity value. If that value is less than this, the block doesn't generate. |
Minecraft wiki entry for Vindicator, associated text: Vindicators can spawn during raids. They appear more frequently during later waves and at higher difficulties. |
Minecraft wiki entry for Development_versions, associated text: Preloading limited worlds to reduce stuttering
Made villages more common
Selecting the correct start tab of the Creative inventory
The Survival inventory now defaults to the Crafting screen when interacting with crafting tools
Removed the end portal frame with eye from the Creative inventory
Increased network protocol version (can't connect with build 6 or older) |
Minecraft wiki entry for Defeating_a_pillager_outpost, associated text: Potions such as strength and/or the turtle master (invisibility is ineffective in Java Edition)
Enchanted or normal golden apples
A Trident with Loyalty III, and if wanted Channeling and/or one with Riptide (water must be nearby or you need many water buckets), as another ranged weapon option
A Lava Bucket
TNT with Flint and Steel or Fire Charges to ignite it (these can also be used to burn the outpost down)
Snow blocks and/or iron blocks with carved pumpkins to create golems to help fight (sometimes pillager outposts have targets with carved pumpkins on them, which you can use)
Ender Pearls
Totem of Undying
A tamed Wolf and/or Fox, preferably multiple, to help fight
If a crossbow is being used, bring firework rockets crafted with several firework stars for ammunition and a crossbow
A Milk Bucket to remove the bad omen effect one gets after killing a captain. |
Minecraft wiki entry for Shelters, associated text: It's generally a good idea to put the entrance to your mine inside your shelter, simply so that if you return at night you won't encounter mobs. It's probably a good idea to make sure your mine is well lit by torches, redstone lamps, or glowstone. If playing in a mode besides peaceful, you should put a door so mobs do not get in (use iron doors when on hard - zombies on that difficulty can damage wooden doors to the point of breaking). Buttons are useful for any barrier only opened by Redstone. |
Minecraft wiki entry for Version_formats, associated text: "Thanks for the feedback - don't get too hung up on the version numbers though - because Bedrock goes out on many different platforms, the version numbers need to be spaced out so they don't overlap with hotfixes etc. (I'm reassured that there's a method to the madness! π)" β @Mega_Spud on Twitter, October 23, 2020 |
Minecraft wiki entry for Development_versions, associated text: Fixed a crash that sometimes happened when an entity with a scoreboard value was removed from the level. |
Code example for Mineflayer API: /**
* A quick and easy implementation of the collect block plugin. (Requires mineflayer-pathfinder and mineflayer-collectblock)
*/
const mineflayer = require('mineflayer')
const pathfinder = require('mineflayer-pathfinder').pathfinder
const collectBlock = require('mineflayer-collectblock').plugin
if (process.argv.length < 4 || process.argv.length > 6) {
console.log('Usage : node collectblock.js <host> <port> [<name>] [<password>]')
process.exit(1)
}
const bot = mineflayer.createBot({
host: process.argv[2],
port: parseInt(process.argv[3]),
username: process.argv[4] ? process.argv[4] : 'collector',
password: process.argv[5]
})
// Load pathfinder and collect block plugins
bot.loadPlugin(pathfinder)
bot.loadPlugin(collectBlock)
// Listen for when a player says "collect [something]" in chat
bot.on('chat', (username, message) => {
const args = message.split(' ')
if (args[0] !== 'collect') return
// Get the correct block type
const blockType = bot.registry.blocksByName[args[1]]
if (!blockType) {
bot.chat("I don't know any blocks with that name.")
return
}
bot.chat('Collecting the nearest ' + blockType.name)
// Try and find that block type in the world
const block = bot.findBlock({
matching: blockType.id,
maxDistance: 64
})
if (!block) {
bot.chat("I don't see that block nearby.")
return
}
// Collect the block if we found one
bot.collectBlock.collect(block, err => {
if (err) bot.chat(err.message)
})
})
|
Minecraft wiki entry for Piston, associated text: A more advanced (and much larger) circuit can double-push pistons, without extending them (and stopping the system). This circuit can also can be powered with torches from below, to hide all the wiring. Either way, input to any of the green-marked squares, so the signal reaches all the way round without needing extra repeaters. The design can be mirrored to push a pair of pistons on the same switch. |
Minecraft wiki entry for Development_versions, associated text: MC-151 β Pushing TNT with a piston and activating it at the same time duplicates it.
MC-266 β Placing a solid block near TNT and above redstone torch won't update the TNT.
MC-846 β Dispenser and dropper shooting out when updated.
MC-3259 β Long redstone wire does not update/behaves strange in newly loaded chunks.
MC-3458 β Server crashes if spaces are input on the console.
MC-6223 β Night Vision Potions that are edited to last longer create a potentially seizure-inducing flashing sky background.
MC-10956 β Animals can breed over distances up to almost 8 blocks when only separated by fences. |
Minecraft wiki entry for Island_survival, associated text: It is advisable, however, to prioritize string to make a fishing rod for a reliable food supply before hunting down spiders to craft wool for a bed. It is often more efficient to find a sheep on another island. Occasionally a sheep may spawn on your island while you are away from it, or while you're mining deep underground. |
Minecraft wiki entry for String, associated text: When tripwire is broken (including by being washed away by spreading water in Java Edition) after being part of a valid tripwire circuit, it activates the attached tripwire hooks for 5 redstone ticks (10 game ticks, or 0.5 seconds barring lag). It does not produce the signal if it is broken using shears. |
Minecraft wiki entry for Flying_machines, associated text: A semi-automatic engine needs player's intervention to move it, generally by updating a piston -- e.g., using flint and steel on it, or rapidly placing tripwire against it.
A fully automatic engine can be started by a single update, say by breaking a block (perhaps a button or a sign). A switch can be used, but is likely to be left behind once the machine starts to move. Stopping them can be more difficult -- many engines will stop only when they run into an obstacle. If the obstacle is wrongly shaped, it may break the machine, thus a prepared docking station may be needed.
A few "drivable" machines take advantage of the point that a note block produces an update when played, so a player riding the machine can trigger note blocks to start and/or stop the machine.
Engines can also differ in available directions and speed. The simplest can only move in a single direction, but two-way and even diagonal motion are possible. Again, dedicated docking stations are sometimes needed. |
Minecraft wiki entry for Fish_farming, associated text: Snapshot 20w12a changed how fishing worked. Now, in order to get treasure loot, the bobber will need to be in a 5x5x4 area of water, air, or Lily Pads.. This broke all old AFK fishing designs. The current designs use a timer to approximate how long it'll take to catch a fish, and then forcefully cause the player to reel it in via trapdoors activated on a redstone timer. These aren't as fast as the pre-1.16 designs. |
Minecraft wiki entry for Mining, associated text: An effective technique if players want to find rare resources with minimal effort. It is basically mining down to any level, usually to bedrock, and then mining outwards to the sides, much like a tree with a trunk and branches. |
Minecraft wiki entry for Henrik_Kniberg, associated text: On October 14, 2019, Agnes Larsson announced that Henrik has joined the Minecraft Gameplay team[2] and obtained an official team member status.[3] |
Minecraft wiki entry for Combat, associated text: The bow is the easiest to use, and most widely employed ranged weapon in the game. However, it requires arrows as ammunition. Enchanting a bow with Infinity can sidestep the ammunition problem, as wielding one arrow is enough for infinite shots, limited only by the weapon's durability. Infinity can also prevent one's opponents from picking up the missed arrows to use as ammunition of their own. Other bow enchantments will greatly enhance the bow's attacking power, allowing it to deal more than ten hearts per shot. |
Minecraft wiki entry for Enchanting_Table, associated text: Three to five words are chosen from the list and appended to each other, then displayed in the Standard Galactic Alphabet. Although sometimes the words chosen accidentally refer to mobs like Blazes and Elder Guardians, the words chosen are random and purely cosmetic; they have no relation to the enchantments to be applied to the item and are not saved on the enchanted item (meaning they say nothing about the spell's identity), and they are displayed only in the enchanting table. Only the cost and one of the enchantments are known. |
Minecraft wiki entry for Creeper, associated text: Artwork of a Creeper.
Artwork of a Creeper's face.
A Creeper in promotional artwork for the first Caves & Cliffs update.
Creepers in promotional artwork for the second Caves & Cliffs update. |
Minecraft wiki entry for Zombified_Piglin, associated text: Zombified piglins can also spawn if a piglin or a piglin brute enters the overworld or the end. The piglin or piglin brute turns into a zombified piglin after fifteen seconds after the piglin or piglin brute enters and gets the nausea effect. Piglins or piglin brutes that are zombified has the same amount of damage output as a normal zombified piglin. They also get the same health as a normal zombified piglin. Piglins or piglin brutes that are zombified cannot turn back to a piglin or piglin brute, meaning once a piglin or a piglin brute is zombified, it stays zombified until killed or despawned. |
Minecraft wiki entry for Pretty_Scary_Update, associated text: Lighting bugs present in 1.3.2 were only partially fixed. Dinnerbone first introduced changes in snapshots 12w39a/b. Dinnerbone tweeted to revert and push this to 1.5.[8][9]
Other changes postponed to 1.5 include redstone changes[10] and a rendering overhaul.[11][12] |
Minecraft wiki entry for Defeating_a_bastion_remnant, associated text: 1 What to bring
2 Your main goals
3 Mobs
3.1 General
3.2 Piglin Brutes
3.2.1 3-block tall pillar
3.2.2 Diamond and Netherite Armor
3.2.3 Boats
3.2.4 Lava Bucket
3.2.5 Summoning Iron Golems
3.2.6 Blocking Yourself Off
3.2.7 Potions
3.3 Piglins
3.4 Hoglins
3.5 Magma cubes
3.6 Magma cube spawner disabling
4 Defeating the bastion |
Minecraft wiki entry for The_Wild_Update, associated text: "Getting the Deep Dark biome distribution right has been tricky. Generally we're looking to get it deep underneath very continental or mountainous areas, and it will stretch all the way to -64. Looking forward to see how it feels." β @kingbdogz on Twitter, September 2, 2021 |
Minecraft wiki entry for Defeating_a_Nether_fortress, associated text: You can turn it into a home or base if you like. More details are provided in this excellent guide: Tutorials/Nether Survival. The fortress makes a great base anyway (if you get rid of mobs, see below): huge, looks nice, and ghast-proof walls.
Mobs will quickly turn into a problem if you decide to stay here. The main problems and ghasts, blazes, and wither skeletons. Ghasts are extremely dangerous when they spawn in the fortress itself, often being trapped and killing them usually requires deflecting fireballs back at them. For blazes and wither skeletons, they need a specific light level or lower to spawn: 11 or lower for blazes and 7 or lower for wither skeletons. Note: If you're using cheap light sources like torches, it's remarkably hard to completely flush out blazes. You will almost certainly see them pop up occasionally even if you have high light levels everywhere. Wither Skeleton proofing is easier as each torch gives a wide range in which wither skeletons cannot spawn. Assorting torches or other light sources helps to flush out ghasts as the places they spawn in will now be inaccessible.
These are the only places where you can make blaze farms for blaze rods and experience and wither skeleton farms for skulls. Blaze rods are normally easy and can be made by just remodeling a spawner room (see Tutorials/Blaze Farming), however normally wither skeleton farms (see Tutorials/Wither Skeleton farming) are involved and require lighting up/flattening large parts of your fortress, which makes it not worth it if you only plan to summon the wither once. |
Minecraft wiki entry for End_Gateway_(block), associated text: In Bedrock Edition, it may be obtained as an item via inventory editing or add-ons. It cannot be placed by block placement commands in this edition, but it can be placed using structure blocks. |
Minecraft wiki entry for Tree, associated text: When a sapling on a grass block or mycelium grows into a tree, the grass block or mycelium is instantly converted to dirt. |
Minecraft wiki entry for Rabbit_(disambiguation), associated text: Raw Rabbit, a food item that restores 3 ()
Cooked Rabbit, a food item that restores 5 ()
Rabbit Stew, a food item that restores 10 ()
Rabbit Hide, an item used to craft leather
Rabbit's Foot, an item used in brewing |
Minecraft wiki entry for Dye, associated text: Dyes can be used on sheep to change the color of the wool. Shearing a colored sheep drops the corresponding color of the wool, and the sheep retains the color when the wool regenerates. Breeding colored sheep produces a lamb colored as one of the parent sheep, or a color resulting from the combination of both parents' color. The color combining follows the same rules that dyes use β red and yellow sheep produce an orange lamb, but a blue and yellow sheep cannot create a green lamb. The unlimited reproduction of colored sheep makes dyeing and shearing sheep infinitely more efficient than just dyeing wool directly. |
Minecraft wiki entry for Armor_farming, associated text: Rays Works Raid Farm - 3500 per hour
Shulkercraft Raid Farm - 3300 per hour
Wattles Raid Farm - Easy, XP, Loot & Efficient |
Minecraft wiki entry for Create_a_Mac_OS_X_startup_daemon, associated text: This script creates a lot of temporary files in the server directory, maybe they could be put in /tmp or in a temporary subdirectory? |
Minecraft wiki entry for Data_pack, associated text: This folder contains all the data under one or multiple namespaces. It can contain advancements, dimension, dimension_type, functions, loot_tables, predicates, recipes, structures, tags and/or worldgen, folders. The worldgen folder can contain biome, configured_carver, configured_feature, configured_structure_feature, configured_surface_builder, noise_settings, processor_list and template_pool folders. |
Minecraft wiki entry for Dirt_(disambiguation), associated text: Grass Block, dirt with a grassy texture on top of it
Coarse Dirt, a variant made from dirt and gravel
Podzol, a variant that spawns abundantly in old growth taiga
Mycelium, a rare variant that has gray layer covering its surface
Dirt Path, a block that has a path above dirt
Farmland, tilled dirt that can be hydrated
Rooted Dirt, dirt that generates in the lush caves. |
Minecraft wiki entry for Creating_a_challenge_map, associated text: This trap is avoidable. If the victim runs fast enough and/or realizes, then the victim avoids the trap, but if you put a furnace facing in, the player might think that the dispenser is just an ornate tripwire dropping a prize. |
Minecraft wiki entry for Locations, associated text: Zombie dungeon (contains no chests): (X: -39, Y: 27, Z: 17).
End portal: (X: 13, Y: 29, Z: 27).
Nether portal: (X: -266, Y: 71, Z: -367).
Mineshaft chest - containing iron horse armor: (X: 394, Y: 15, Z: 279).
Diamond ore blob: (X: 388, Y: 15, Z: 291).
Cave spider spawner: (X: 391, Y: 15, Z: 291).
Desert temple: (X: 263, Y: 66, Z: -42).
Zombie dungeon: (X: 256, Y: 51, Z: -49). |
Minecraft wiki entry for Minecarts, associated text: A diagonal track is a track that consists of the pattern 'left corner' attached to a 'right corner' attached to a 'left corner' and so on. When minecarts travel on a diagonal track, the camera is held steady in the diagonal direction and the minecart visually travels diagonally along the track as well. The speed limit of minecarts is actually 8 m/s per cardinal axis, thus when traveling on 2D tracks, the cart travels 8 m/s in both cardinal directions of travel to result in a net vector of about 11.3 m/s or the square root of 128. With a 3D track, you travel as fast as 13.85 m/s or the square root of 192. |
Minecraft wiki entry for Lapis_Lazuli, associated text: In Java Edition, cleric villagers give players lapis lazuli if they have the Hero of the Village effect. |
Minecraft wiki entry for Creating_resource_pack_add-ons, associated text: In the image editor of your choice, create a new image with a maximum size of 256x256 pixels. Note that the number should be a power of 2. |
Minecraft wiki entry for Cobbled_Deepslate, associated text: Cobbled deepslate cannot be used to craft dispensers, droppers, pistons, or other blocks that use cobblestone in their recipes. This is intended per MC-177904. |
Minecraft wiki entry for Development_versions, associated text: "This week's build is now available! It had to be re-versioned to 1.18.30.24, but is the same as what is in the current changelog. Thanks for your patience!" β @JORAX79 on Twitter, March 9, 2022 |
Minecraft wiki entry for Other_data_format, associated text: : Parent tag.
Command: The command entered into the command block.
Version: The data version.
SuccessCount: Represents the strength of the analog signal output by redstone comparators attached to this command block.
CustomName: The custom name or hover text of this command block.
LastOutput: The translation key of the output's last line generated by the command block. Still stored even if the gamerule commandBlockOutput is false. Appears in the command GUI.
LastOutputParams: The params for the output's translation key.
: A param.
TrackOutput: Determines whether the LastOutput is stored. Can be toggled in the GUI by clicking a button near the "Previous Output" textbox.
LastExecution: Stores the time when a command block was last executed.
TickDelay: The delay between each execution.
ExecuteOnFirstTick: True if it executes on the first tick once saved or activated. |
Minecraft wiki entry for Missing_textures_and_models, associated text: In 1.13 and its later development, the game would catch invalid resource packs and unload them automatically if errors were detected. This also included the default resources, meaning that applying a flawed resource pack would result in all assets being unloaded, and as such the missing error assets appearing everywhere. |
Minecraft wiki entry for Drowned_farming, associated text: Make the ceiling completely from glass blocks, with at least six blocks between the floor and bottom of the glass. 1 block of stone wall (excluding the slabs on the top edge of the wall) should extend above the top of the glass, to form a shallow pool that you must fill completely with water source blocks (no flowing water). You can build a temporary infinite water source off to the side to work with as you fill the pool. |
Minecraft wiki entry for Development_versions, associated text: Villagers, Rabbits, and Foxes spawned in the Frozen and Jagged Peaks biomes now spawn as their respective snowy variants (MCPE-119561)
Goats now spawn in the Jagged Peaks and Frozen Peaks biomes (MCPE-146886) |
Minecraft wiki entry for executedetect, associated text: executedetect <origin: target> <position: x y z> <detect: string> <detectPos: x y z> <detectBlock: string> <detectData: int> <command: string> |
Minecraft wiki entry for Timeline_of_events, associated text: 2 major updates (1.14β1.15), 5 minor updates (1.14.1β1.15.1), 35 snapshots, (19w02aβ19w46b), 30 pre-releases (1.14 Pre-Release 1 β 1.15.1 Pre-release 1), 4 combat tests (1.14.3 - Combat Test β Combat Test 4), 1 joke update (3D Shareware v1.34) |
Minecraft wiki entry for The_Update_that_Changed_the_World, associated text: Mojang released the 1.7 pre-release on October 22, 2013, the 1.7.1 pre-release on October 23, and the 1.7.2 pre-release on October 25, shortly before the official release of the update. |
Minecraft wiki entry for Character, associated text: Jumper?
Warm Wooly
Santa Claus
Mrs Claus
Red-Nose
Toy Crafter
Father Christmas
Mother Christmas
Tomte
Puffed Padded
Snug Snoozy
Casual Comfy
Parka?
Tasty Gingerbread
Gingerbread Creeper |
Minecraft wiki entry for Mini_mes, associated text: /summon Wolf ~ ~1 ~ {CustomName:SkyWolf,Owner:playername} The term "playername" used here is used as a variable representing your Username on Minecraft. Just replace "playername" with your username. Simple problem, simple fix. |
Minecraft wiki entry for Development_versions, associated text: Fixed ripple effect on portals and crash when creating a large amount of portal blocks (MCPE-126674, MCPE-126690).
Fixed bubble columns on naturally generated Magma Blocks (MCPE-127196). |
Minecraft wiki entry for Attribute, associated text: /give @s netherite_sword{AttributeModifiers:[{AttributeName:"generic.attack_damage", Name:"generic.attack_damage", Amount:20.0, Operation:0, UUID:[I; 42853, 1689024593, -201178, -1559272105]}]} 1 |
Minecraft wiki entry for Snowy_Plains, associated text: Snowy plains are grasslands covered with snow layers, which are often stacked in Bedrock Edition. Spruce trees, tall grass, dandelions and poppies generate infrequently. The exposed grass and leaves take an aqua tone. Aquifers and springs freeze over soon after generation due to the temperature if not exposed to light; thus, any sugar cane that generates alongside water sources uproot themselves shortly after. In the even rarer ice spikes variety, packed ice generates naturally in form of an ice spike or ice lake. Lava lakes that generate within the tundra melt the snow layers around them. River biomes that cut through tundra are frozen. |
Minecraft wiki entry for Wolf, associated text: Issues relating to "Wolf", "Wolves", or "Dog" are maintained on the bug tracker. Report issues there. |
Minecraft wiki entry for Mash-up_pack, associated text: Mash-up packs can be purchased for Legacy Console Edition through the Xbox 360 Marketplace, Xbox One Marketplace, PlayStation Store, Nintendo eShop, or in-game through the Downloadable Content section of the game. For Bedrock Edition they can be purchased through the Minecraft Marketplace by using the Store button on the main menu. |
Minecraft wiki entry for Building_a_metropolis, associated text: Try having a currency so people can buy and sell things in your city. Good currency is usually something with practical value that follows a non-finite standard to prevent inflation. Therefore, great currencies to use are emeralds and emerald blocks (which are worth 9 emeralds each). This has the added benefit of allowing you to make villager shops with no difficulty. Another good currency would be Brick = $1, Iron = $10, Gold = $25, Copper = $40, Diamond = $50, Netherite = $75, and Emerald = $100. Here's a list of common currencies with notes about their usage: |
Minecraft wiki entry for Obtaining_discontinued_block_configurations, associated text: Prior to 15w51a, melting ice blocks would not cause the water to start flowing until it received a block update. |
Minecraft wiki entry for Development_versions, associated text: Relocated menus to provide more space for coding and the menu options to be more understandable.
Home and Reset Editor buttons have been added to the Code Builder menu. |
Minecraft wiki entry for Weeping_Vines, associated text: Weeping vines generate naturally inside crevices within the ceilings, or on huge crimson fungi in the crimson forest biome. |
Minecraft wiki entry for Pillar_jumping, associated text: Players can also build a pillar out of a flammable material such as wood or wool, then ignite it when it is no longer wanted, however this presents a number of problems. First is the possibility for unintentional spread of fire. Another is the fact that a block lit on fire is not guaranteed to burn away completely, which can lead to burning wooden blocks suspended high in the air (although this problem has been mostly resolved since the release of Beta 1.3). Since Beta 1.6, using fire to burn very high pillars is not recommended, as it can stop midway due to the nerfed fire. |
Minecraft wiki entry for History, associated text: The first 4 bytes of the chunk data which are in little-endian represent its length in bytes. In practice it is always 82180 bytes (chunk data header: 4, actual chunk data: 82176). |
Minecraft wiki entry for Attribute, associated text: Note that attribute modifiers that have the same UUID and affect the same attribute do not stack; only the one that most recently affected a player or mob has an effect, overriding the previously affecting modifier(s). |
Minecraft wiki entry for Hardened_Glass, associated text: Unlike normal glass, hardened glass drops itself when broken with any tool or by hand. It also takes significantly longer to break. |
Minecraft wiki entry for Legacy_village_mechanics, associated text: It doesn't matter what you build, except for what's directly above the colored wool. Anything to the sides of this can be whatever you want, or nothing at all: |
Minecraft wiki entry for Before_Village_%26_Pillage, associated text: A door is not counted as a house without a "roof," or with the same number of covered spaces on either side. |
Minecraft wiki entry for Development_versions, associated text: 2.1.3610-beta (Windows), 2.1.3608-beta (macOS), or 2.1.3609-beta (Linux) was an update to the launcher. |
Minecraft wiki entry for Difficulty, associated text: Since each end portal frame has a 1β10 chance of being filled, there is a (1β10)12 = 1β1 trillion chance of all 12 end portal frames being filled. |
Minecraft wiki entry for Rock, associated text: Cobblestone β a block of cobbles that drops from mining stone; found naturally where flowing water meets flowing lava; widely used in crafting
Flint β a rock that drops from gravel; useful in crafting arrows and starting fires
Obsidian β a hard black blast-proof rock found where lava is flash-cooled by water; useful for crafting enchanting tables, ender chests and beacons, traveling to the Nether and summoning dragons |
Minecraft wiki entry for Respawn_Anchor, associated text: The respawn anchor is used to respawn in the Nether, even if the player leaves the Nether. Once the block is charged, it can be used to set the player's respawn location. |
Minecraft wiki entry for Beach, associated text: The snowy beach variant generates wherever snowy plains, snowy taiga, or any of their variants border an ocean. Snowy beaches are similar to regular beaches terrain-wise, being made mostly of sand, though their landscape is covered entirely in snow layers. The water surrounding snowy beaches freezes into ice due to the cold temperatures and these beaches often lead to frozen oceans. Turtles cannot spawn here, but rabbits canβ[BE only]. Shipwrecks and buried treasure may still generate in this variant. |
Minecraft wiki entry for GhastMachine2CHP, associated text: As soon as the bell rings for lunch, Jodi walks briskly down the hallway to Docβs classroom, catching Doc as she is leaving for a lunch break. Jodi asks her about the security cameras, and the two head over to the security hub, with Doc noting the cameras they passed along the way while also mentioning that part of the gym is a blindspot, and that there arenβt any cameras in the supply closets or bathrooms. Soon arriving at the security hub, which is connected to the main office, Jodi marvels at the wall of TV screens which show various locations throughout the school. Doc then mentions the two mistakes that she herself had made that led to the technical problems: networking the technology, and using an old government AI program to run the cameras. Jodi realizes that AI is short for artificial intelligence, wondering if the cameras are alive, but Doc mentions that the AI was very limited in that it could mainly only follow instructions. |
Minecraft wiki entry for Pillager_Outpost, associated text: A pillager outpost that generated inside of a desert temple.
A pillager outpost that generated inside a desert village.
Pillager outpost and desert pyramid generated on top of each other. |
Minecraft wiki entry for Development_versions, associated text: Fixed a number of crashes that could occur during gameplay.
Fixed a crash that could occur when leaving a world.
Fixed a crash that occasionally occurred on dedicated servers around villages (BDS-10666).
Fixed a crashing issue related to corrupted biomes during world load for various Marketplace worlds. |
Minecraft wiki entry for Shovel, associated text: Vindicators and pillagers that spawn from raids have a 4.1% chance(5.12% on hard) to drop a badly-damaged iron shovel that is sometimes enchanted with a random enchantment.β[Bedrock Edition only] |
Minecraft wiki entry for Server_startup_script, associated text: [Multi World] Minecraft Server Control Script
Run multiple Minecraft worlds.
Start, stop, and restart single or multiple worlds.
Create, delete, disable, and enable worlds.
Supports CraftBukkit in addition to the standard Mojang server distribution.
Users automatically notified of important server events.
Uses the Minecraft Query protocol to keep track of current server conditions.
LSB and systemd compatible init script, allows for seamless integration with your server's startup and shutdown sequences.
Map worlds using the Minecraft Overviewer mapping software.
Backup worlds, and remove backups older than X days.
Update the server software and installed addons.
Send commands to a world server from the command line. |
Minecraft wiki entry for Carl_Manneh, associated text: "Thank you @notch & @JahKob for inviting me on the ride. Thank you Mojangstas, it's been 4 amazing years. Can't wait to follow what's next!" β @carlmanneh on Twitter, September 15, 2014 |
Minecraft wiki entry for Redstone_components, associated text: An observer turns ON when the block in front of its face changes state (for example, a block being placed or mined, water changing to ice, a repeater having its delay changed by a player, etc.). The observer stays ON for 2 redstone ticks (4 game ticks, or 0.2 seconds barring lag) and then turns OFF automatically. |
Minecraft wiki entry for Creating_a_resource_pack, associated text: Because the default ladder in Minecraft isn't 3D, you can replace it with your own model. First, get all the ladder's files into this resource pack: |
Minecraft wiki entry for Development_versions, associated text: Generates in oceans, rivers, and swamps.
Can additionally be generated when using bone meal on blocks underwater.
Has a tall variant.
Has animated textures.
Version exclusive: Has a darker green color.
Version exclusive: Seagrass in the inventory uses the texture of normal grass. |
Minecraft wiki entry for Sculk_(disambiguation), associated text: "Sculk" is derived from the word "skulk", meaning "keep out of sight, typically with a sinister or cowardly motive".[2] |
Minecraft wiki entry for Development_versions, associated text: When blown up using activator rails, they no longer destroy rails and supporting blocks.
Still blows up redstone materials. |
Minecraft wiki entry for 4CHP, associated text: Max, Freya, and Nicholas reunite with Alison, who shows Nicholas Dia's journal. The group then begin preparing to head back to the Overworld. |
Minecraft wiki entry for Clock, associated text: Replace X with a value that determines how long the item should last before despawning: 6000 - 20 Γ <seconds> (for example, 5940 for a 3-second despawn). Every game tick, this value increases by 1, and the item despawns when the value reaches 6,000. Normally, items start at 0 and last 5 minutes (6000 game ticks = 300 seconds = 5 minutes), but setting the item entity's initial Age changes that. |
Minecraft wiki entry for Bucket_of_aquatic_mob, associated text: A bucket of tropical fish purchased from a wandering trader or pulled from the Creative inventory spawns random tropical fish when used, due to it having no associated NBT. |
Minecraft wiki entry for How_to_play, associated text: A lead can be attached to one, and when this happens, surrounding llamas (both tamed and un-tamed) follow, making a caravan. |
Minecraft wiki entry for Resource_Pack, associated text: One or more resource packs can be bundled with a world in the world settings or files[more information needed]. When playing the world, that resource pack appears as the default right above the default resource pack. A default resource pack can also be set on a server by adding a putting the .mcpack in the resource_packs folder and bundling it with the world. Users can opt out of using the resource pack or choose not to download it if the texturepack-required option is disabled in the server settings or if the world has the "Require players to accept resource packs to join" option enabled. |
Minecraft wiki entry for Hunger, associated text: 1 Description
2 Mechanics
2.1 Effects of hunger
2.2 Exhaustion level increase
2.3 Food level and saturation level restoration
3 Food poisoning
4 Achievements
5 Video
6 History
7 Issues
8 References |
Minecraft wiki entry for Thorns, associated text: Thorns applies a durability penalty to the armor. It reduces durability by an additional 2 points when inflicting damage. If multiple armor pieces are enchanted with Thorns, the durability penalty is applied to one piece chosen at random, regardless of what level of Thorns that piece has. If the item is also enchanted with Unbreaking, the damage penalty has a chance of being ignored. |
Minecraft wiki entry for Player.dat_format, associated text: <player>.dat files are used by servers to store the state of individual players. The format is also used within level.dat files to store the state of the singleplayer player, which overrides any <player>.dat files with the same name as the singleplayer player. These files are in NBT format. |
Minecraft wiki entry for Patrol, associated text: The game picks a random location 24β48 blocks along each of the X and Z axis away from the player to try to spawn the patrol's captain. If a pillager cannot spawn at the chosen position, it gives up and does not spawn anything. If the captain can spawn, the game tries to spawn 1 + localDifficulty [verify](rounded up) more pillagers, with each pillager spawning within a 4-block radius square around the previous pillager. |
Minecraft wiki entry for List_of_broken_features, associated text: As of 12w34a, the nether portal screen effects[2] and trigger sound[3] will play even if the player arrives on the other side of a portal, making the brokenness of this exit animation hard to spot. It is still noticeable given that this wrong animation starts weak and gets more intense as if this were a newly entered portal, rather than beginning at full intensity. |
Minecraft wiki entry for Huge_fungus_generation, associated text: Collecting huge fungi blocks in their own biomes is a great way to collect a sufficient amount of wood and decorative blocks early game. |
Minecraft wiki entry for Player_versus_Player, associated text: A suggested tactic for a mass-team retreat on servers running Java 1.9+ versions: if you happen to be attacking as a juggernaut, take precautions in case of a forced retreat from battle, by bringing 1 stack obsidian, an efficiency IV+ diamond pickaxe, and end crystals, at least a dozen or so (if you don't have resources for juggernauts, just bring iron armor, 2 end crystals, and 4 obsidian blocks for a suicide-bomb version). First, get everybody around to retreat, now get your juggernauts and yourself to slow down the retreat by placing obsidian around them, one block above their feet. This often fools enemies into thinking the person's trapped, for one, and if they get close, place down the end crystal on the elevated obsidian, and fire in the hole! The explosion would easily kill off the peons chasing your team in iron, and likely even enemy juggernauts in protection IV if the difficulty is set on hard. |
Minecraft wiki entry for Redstone_Torch, associated text: A redstone torch is a non-solid block that can be used as a toggleable redstone power source, as well as a signal inverter. |
Minecraft wiki entry for History, associated text: The 0x30 terrain data entry appears to contain block data for an x*z*y = 16*16*128 block chunk. The value associated with the 0x30 terrain data key is always of length 83,200 and seems to consist of the following data: |
Minecraft wiki entry for Sign, associated text: In Java Edition, signs can be created with JSON text, which allows complex formatting (colors, bold, italic, etc.), hover and click events, localized translation (for Minecraft technical terms, like "Redstone Repeater", otherwise translations must be provided in language files in resource packs), and the incorporation of scoreboard values into text. Use the /data merge block command to create or alter JSON signs. |
Minecraft wiki entry for Beginner%27s_guide, associated text: Any time you are near a village, you must sleep in one of their beds overnight, as soon as night falls. Trying to stay up overnight can expose the village to attacks by monsters, which can easily wipe out the villagers. It's okay if a villager has already claimed the bed β trying to use the bed the first time simply kicks the villager out, and then you can use the bed again for yourself. If you have a village, you should probably travel some distance from it (say, fifty or a hundred or so blocks from the edge) to make your own lair, to avoid having monsters appear overnight due to your presence. If monsters (such as illagers) do appear during the day, your best bet at this point is to ring one of the bells in the village, and hope that the village's iron golem can deal with the invasion. It is difficult to repopulate a village that has been wiped out. |
Minecraft wiki entry for Memory, associated text: This basic level-triggered gated D latch (design A) sets the output to D as long as the clock is set to OFF, and ignores changes in D as long as the clock is ON. However, on a rising clock edge, if D is low, the output will pulse high for 1 tick, before latching low. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.