🌐
Planet Minecraft
planetminecraft.com › minecraft mods
Flamethrower Minecraft Mods | Planet Minecraft Community
Browse and download Minecraft Flamethrower Mods by the Planet Minecraft community.
Discussions

Flamethrower?
Here's an example datapack I created for a flamethrower mechanic. I'll walk you through the functions here: I defined the flamethrower as a fire charge with a custom name. I'll mention how to change the item when we reach that function. For now, this is the give command for the firecharge (chat): /give @s minecraft:fire_charge[minecraft:custom_name='{"text":"Flamethrower","color":"gold","italic":false}'] tick.mcfunction: execute as @a if items entity @s weapon.mainhand minecraft:fire_charge[minecraft:custom_name='{"text":"Flamethrower","color":"gold","italic":false}'] at @s positioned ~ ~1.3 ~ positioned ^ ^ ^0.5 run function flamethrower:cast with entity @s If any player is holding the flamethrower item, it runs a function called cast.mcfunction. If you want to change the flamethrower item, replace minecraft:fire_charge[minecraft:custom_name='{"text":"Flamethrower","color":"gold","italic":false}'] with the item of your choice. cast.mcfunction is a raycasting function, meaning it is recursive and creates a straight line in the direction the player is looking: $playsound minecraft:block.fire.extinguish master @a[nbt={UUID:$(UUID)}] ~ ~ ~ 0.1 particle flame ~ ~ ~ 0.01 0.01 0.01 0.02 5 particle small_flame ~ ~ ~ 0.01 0.01 0.01 0.02 5 execute unless block ~ ~-1 ~ air unless block ~ ~-1 ~ water unless block ~ ~-1 ~ lava run fill ~ ~ ~ ~ ~ ~ fire replace air execute unless block ~ ~-1 ~ air unless block ~ ~-1 ~ water unless block ~ ~-1 ~ lava run fill ~ ~ ~ ~ ~ ~ fire replace short_grass execute unless block ~ ~ ~ air unless block ~ ~ ~ water run return fail $execute unless entity @a[nbt={UUID:$(UUID)},distance=..10,limit=1] run return fail $execute if block ~ ~ ~ air positioned ^ ^ ^1 run function flamethrower:cast {UUID:$(UUID)} I set the limit to 10 blocks in the 7th line (distance=..10). This can be changed by simply replacing it with the desired (e.g. 50 block limit is ..50) The functions plays a sounds effect (one I though was appropriate but which you may want to change, up to you) and creates fire particles following the raycast. If the block underneath it is grass or air, it will replace it with fire. This can be expanded to replace more blocks with fire (e.g. snow), you would just need to add more lines like this: execute unless block ~ ~-1 ~ air unless block ~ ~-1 ~ water unless block ~ ~-1 ~ lava run fill ~ ~ ~ ~ ~ ~ fire replace Where is your desired block. Finally the function checks the distance to the player which executed the command. If they are more than the minimum distance away, the flame stops. Otherwise, it keeps going. If you have any questions or if something does not work as intended, feel free to reach out. Hope this helps! More on reddit.com
🌐 r/MinecraftCommands
5
3
August 8, 2024
What mod is this flamethrower from?
Looks like Mo' guns https://www.curseforge.com/minecraft/mc-mods/moguns More on reddit.com
🌐 r/feedthebeast
10
9
July 27, 2024
I made Flamethrowers in Minecraft
Here are the downloads for the data pack and resource pack . More on reddit.com
🌐 r/MinecraftCommands
21
743
February 28, 2022
Flamethrowers in Minecraft made with command blocks (Vanilla again, obviously)
Hanz, get ze flamethrower More on reddit.com
🌐 r/MinecraftCommands
8
June 30, 2022
🌐
For-Minecraft.com
for-minecraft.com › mods for minecraft pocket edition › flamethrower addon for minecraft bedrock 1.16
Flamethrower Addon for Minecraft Bedrock 1.16 » For-Minecraft.com - Minecraft Bedrock mods, addons, maps, texture packs, skins
August 6, 2020 - For the most part, they are automated devices that detect enemies on their own. One flamethrower is enough for your house entrance to be reliably protected from any danger, be it skeletons or creepers. By: ... There is nothing like this in Minecraft Bedrock Edition to compare them to.
Rating: 4.7 ​ - ​ 3 votes
🌐
MCPEDL
mcpedl.com › flamethrower-add-on
Flamethrower Add-on | Minecraft PE Mods & Addons
June 7, 2020 - For those cold winter nights, we have flamethrowers! That should warm us up very nicely. I feel warm just thinking about it. Get your marshmallows ready for toasting! No marshmallows??
🌐
Planet Minecraft
planetminecraft.com › minecraft data packs
Flamethrower Minecraft Data Packs | Planet Minecraft Community
Browse and download Minecraft Flamethrower Data Packs by the Planet Minecraft community.
🌐
MONSTER-MCPE
monster-mcpe.com › mods minecraft pe › pancakes flamethrower add-on 1.16+
Pancakes Flamethrower Add-on 1.16+ | Minecraft PE Addons
May 10, 2021 - Bedrock Reimagined Add-on 1.21+ Mods Minecraft PE · Ultimate Drills Add-on 1.21+/1.20+ Mods Minecraft PE · MONSTER-MCPE » Mods Minecraft PE » Pancakes Flamethrower Add-on 1.16+ Would you like to add some unique and at the same time powerful weapon that will help you effectively fight both against one enemy and against a whole group of hostile mobs or players?
Rating: 4.3 ​ - ​ 43 votes
🌐
DLCfun
dlcfun.com › home › minecraft pocket edition › miscellaneous for minecraft pocket edition › mod: flamethrower
Download the mod Mod: Flamethrower for Minecraft Pocket Edition for free from the DLCfun site
May 2, 2024 - If you want to add to your world Minecraft PE (Bedrock) new weapon - flamethrower - download this mod. With it you can defend against evil mobs, fight bosses and more.
🌐
Reddit
reddit.com › r/minecraftcommands › flamethrower?
r/MinecraftCommands on Reddit: Flamethrower?
August 8, 2024 -

Okay look…, I know that a flamethrower is one of the oldest things in Minecraft and many people have made videos on it but I can’t for the life of me figure out how to do it!! I’ve looked at several videos and all of them are in Pocket/Bedrock Edition! Can anyone help pls? (Java, 1.21 Using Only Commands)

Top answer
1 of 1
1
Here's an example datapack I created for a flamethrower mechanic. I'll walk you through the functions here: I defined the flamethrower as a fire charge with a custom name. I'll mention how to change the item when we reach that function. For now, this is the give command for the firecharge (chat): /give @s minecraft:fire_charge[minecraft:custom_name='{"text":"Flamethrower","color":"gold","italic":false}'] tick.mcfunction: execute as @a if items entity @s weapon.mainhand minecraft:fire_charge[minecraft:custom_name='{"text":"Flamethrower","color":"gold","italic":false}'] at @s positioned ~ ~1.3 ~ positioned ^ ^ ^0.5 run function flamethrower:cast with entity @s If any player is holding the flamethrower item, it runs a function called cast.mcfunction. If you want to change the flamethrower item, replace minecraft:fire_charge[minecraft:custom_name='{"text":"Flamethrower","color":"gold","italic":false}'] with the item of your choice. cast.mcfunction is a raycasting function, meaning it is recursive and creates a straight line in the direction the player is looking: $playsound minecraft:block.fire.extinguish master @a[nbt={UUID:$(UUID)}] ~ ~ ~ 0.1 particle flame ~ ~ ~ 0.01 0.01 0.01 0.02 5 particle small_flame ~ ~ ~ 0.01 0.01 0.01 0.02 5 execute unless block ~ ~-1 ~ air unless block ~ ~-1 ~ water unless block ~ ~-1 ~ lava run fill ~ ~ ~ ~ ~ ~ fire replace air execute unless block ~ ~-1 ~ air unless block ~ ~-1 ~ water unless block ~ ~-1 ~ lava run fill ~ ~ ~ ~ ~ ~ fire replace short_grass execute unless block ~ ~ ~ air unless block ~ ~ ~ water run return fail $execute unless entity @a[nbt={UUID:$(UUID)},distance=..10,limit=1] run return fail $execute if block ~ ~ ~ air positioned ^ ^ ^1 run function flamethrower:cast {UUID:$(UUID)} I set the limit to 10 blocks in the 7th line (distance=..10). This can be changed by simply replacing it with the desired (e.g. 50 block limit is ..50) The functions plays a sounds effect (one I though was appropriate but which you may want to change, up to you) and creates fire particles following the raycast. If the block underneath it is grass or air, it will replace it with fire. This can be expanded to replace more blocks with fire (e.g. snow), you would just need to add more lines like this: execute unless block ~ ~-1 ~ air unless block ~ ~-1 ~ water unless block ~ ~-1 ~ lava run fill ~ ~ ~ ~ ~ ~ fire replace Where is your desired block. Finally the function checks the distance to the player which executed the command. If they are more than the minimum distance away, the flame stops. Otherwise, it keeps going. If you have any questions or if something does not work as intended, feel free to reach out. Hope this helps!
Find elsewhere
🌐
Planet Minecraft
planetminecraft.com › minecraft texture packs
Flamethrower Minecraft Texture Packs | Planet Minecraft Community
Browse and download Minecraft Flamethrower Texture Packs by the Planet Minecraft community.
🌐
YouTube
youtube.com › anonymouscommands
How To Get A Working Flamethrower In Minecraft Bedrock With Commands - YouTube
Join my Patreon for exclusive perks like structure files: https://www.patreon.com/AnonymousCommandsDid you always want a flamethrower in Minecraft? This flam...
Published   July 20, 2024
Views   925
🌐
For-Minecraft.com
for-minecraft.com › mods for minecraft pocket edition › flamethrower addon for minecraft pe 1.8/1.9
Flamethrower Addon for Minecraft PE 1.8/1.9 » For-Minecraft.com - Minecraft Bedrock mods, addons, maps, texture packs, skins
December 14, 2018 - 2. Activate the addon (world or game settings). ... IndustrialCraft PE mod v2.0 Pre-Release 7 for Minecraft PEIndustrialCraft PE is a global mod for MCPE which is a very accurate IndustrialCraft copy for Minecraft PC.
Rating: 3 ​ - ​ 2 votes
🌐
MCPEDL
mcpedl.com › pancakes-flamethrower-addon
Pancakes Flamethrower | Minecraft PE Mods & Addons
April 14, 2021 - This mod adds in flamethrowers to your Minecraft world. Flamethrowers can shoot through walls, burn down forest, burn down villages, as well as pop end crystals. These weapons are very over powered and have unlimited use.
🌐
YouTube
youtube.com › watch
Flamethrowers addon for Minecraft Bedrock
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
🌐
Minecraft Pocket
minecraft-pocket.com › mods › mods-1160 › 944-flamethrower-addon-mod-116-115-114.html
Flamethrower Minecraft Addon/Mod 1.16.0.66, 1.16.0, 1.15.0, 1.14.60
August 6, 2020 - Installation: - Download McPack - Use the Minecraft 1.14, 1.15, 1.16 - Install McAddon or McPack files, just open it for this; - Select new textures in the settings; - Switch on the experimental mod; - Done. flamethrower_v1.mcaddon [277.74 Kb] (downloads: 188)
🌐
MCreator
mcreator.net › modification › 52153 › flametrowermod
Flamethrower mod | MCreator
This mod adds a flamethrower to the game and one new fuel. Flamethrower does not need fuel. It can burn mobs and blocks
🌐
MCreator
mcreator.net › modification › 51136 › flame-thrower-mod
Flame Thrower Mod | MCreator
Flame Thrower Mod.jar - This mod adds in a new weapon... The Flame Thrower.
🌐
Reddit
reddit.com › r/minecraftcommands › i made flamethrowers in minecraft
r/MinecraftCommands on Reddit: I made Flamethrowers in Minecraft
February 28, 2022 - I made Flamethrowers in Minecraft · upvotes · · comments · Archived post. New comments cannot be posted and votes cannot be cast. Share · Share · Sort by: Best · Open comment sort options · Best · Top · New · Controversial · Old · Q&A · Max4005 · • 4y ago · Here are the downloads for the data pack and resource pack. Reply · reply · Share · bigwackstonkee · • 4y ago · Does it work on bedrock?