Net Deals Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Minecraft: How to make an arrow that when it lands it summons a...

    gaming.stackexchange.com/questions/338650/minecraft-how-to-make-an-arrow-that...

    redstone block command block/comparator/any block/redstone torch/command block put the 1st command block into repeat. torch should be hanging from the block so when the comparator activate the torch deactivates then 2nd command block charges. 1st command execute @e [type=arrow] ~~~ testforblock ~~-1~ air 2nd command execute @e [type=arrow ...

  3. How can I make a TNT arrow in Minecraft Bedrock? - Arqade

    gaming.stackexchange.com/.../how-can-i-make-a-tnt-arrow-in-minecraft-bedrock

    the 2 is there so the arrow doesn't shoot the tnt then disappear. execute as @e [type=arrow] at @e [type=arrow] run summon tnt ~ ~2 ~. Share. Improve this answer. Follow. edited Jun 12, 2023 at 21:03. answered Jun 12, 2023 at 21:00. zander.

  4. minecraft java edition - Tricks for getting lots of arrows? -...

    gaming.stackexchange.com/questions/32944/tricks-for-getting-lots-of-arrows

    Method One: Go outside every morning around dawn. Not only can you get a few arrows from burnt skeletons, but you can also get some feathers from chickens that happened to die in the night (from wolves, cactus). Beta 1.7 and earlier: You can also get many feathers from burnt zombies by going out in the early morning. Method Two: Explore.

  5. Playing Minecraft with arrow keys as a mouse - Arqade

    gaming.stackexchange.com/questions/256753

    1. If you want to be able to change hitting and placing of blocks then yes, you would hit esc on your key board. Go to options then controls, ...Go to gameplay, click on what you want to change and press the key you want to change it to. You can have keys act as a mouse, but it really doesn't have anything to do with Minecraft to be able to ...

  6. Lightning arrows in minecraft using execute command - Arqade

    gaming.stackexchange.com/questions/387036/lightning-arrows-in-minecraft-using...

    2. Named arrows don't keep their name data after being shot, so you would have to use data from a tipped arrow in specifying where to summon lightning. I am using a custom potion color so the item can't be crafted, and this color would be kept in the arrow entity data. Then you can use a selector to summon lightning at arrows with this custom ...

  7. minecraft java edition minecraft commands - Specific lightning...

    gaming.stackexchange.com/questions/391637/specific-lightning-arrow-task-after...

    /execute at @e[type=arrow] run summon lightning_bolt. It was really fun, summoning an entire line of lightning bolts, one after another, but what if I would only like to have the lightning strike after the arrow has hit something (like a block, not a mob), and I would only want lightning to strike an x amount of times.

  8. How to make a rain of arrows in vanilla Minecraft using ... -...

    gaming.stackexchange.com/questions/288677/how-to-make-a-rain-of-arrows-in...

    The way I can think of this works rather well. It involves the "arrow storm" activator being in a specific inventory slot, as if like an option. First, you set a loop command block to this: /replaceitem entity @a[m=2] slot.hotbar.0 minecraft:arrow 1 0 {display:{Name:"Activate Arrow Storm",Lore:[Select this slot to activate an arrow storm!]}}

  9. minecraft java edition minecraft commands - Summoning an arrow...

    gaming.stackexchange.com/questions/354812/summoning-an-arrow-aimed-at-a-mob

    execute as @e[type=arrow] store result entity @s Motion[2] double 0.1 run scoreboard players get @s z. You'll probably also want to tag the arrows in some way, so that you don't set their Motion to 0 in the last step if they were fired from a bow or if you've already applied the motion to them (except if you want that).

  10. minecraft java edition minecraft commands - How do I make arrows...

    gaming.stackexchange.com/questions/385642/how-do-i-make-arrows-despawn-faster

    Here is some context: I've made some command block code to make lightning arrows. However, I want the arrows to instantaneously despawn after an arrow is shot. How do I do this? Here is the command block code if you need it. execute at @e[type=minecraft:arrow] run summon minecraft:lightning_bolt. minecraft-java-edition. minecraft-commands. Share.

  11. minecraft java edition minecraft commands - Increasing Arrow...

    gaming.stackexchange.com/questions/313261/increasing-arrow-speed

    Use this command for 1.14.4: /data merge entity (arrow's UUID){Motion:[xmovement, ymovement, zmovement]} Replace (arrow's UUID) with appropiate selector for your Arrow and xmovement, ymovement and zmovement with the desired movement values. This will change the Arrow's speed as well as its damage. Share.