How to fill a large area with blocks using command blocks in MC 1.7.2?
I am building a massive fortress in creative and would like to be spared the monotomy of putting the floor in. I have access to commands and command blocks.
The modded server I am using is for running Minecraft version 1.7.2. I can't update it and it isn't my own server.
minecraft
add a comment |
I am building a massive fortress in creative and would like to be spared the monotomy of putting the floor in. I have access to commands and command blocks.
The modded server I am using is for running Minecraft version 1.7.2. I can't update it and it isn't my own server.
minecraft
Try/fill
, but I am not sure if the command exists for 1.7.2....
– AlfredPersonMc
Jun 2 '14 at 0:36
@AlfredPersonMc It isn't available for 1.7 yet.
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 0:59
add a comment |
I am building a massive fortress in creative and would like to be spared the monotomy of putting the floor in. I have access to commands and command blocks.
The modded server I am using is for running Minecraft version 1.7.2. I can't update it and it isn't my own server.
minecraft
I am building a massive fortress in creative and would like to be spared the monotomy of putting the floor in. I have access to commands and command blocks.
The modded server I am using is for running Minecraft version 1.7.2. I can't update it and it isn't my own server.
minecraft
minecraft
edited Jun 2 '14 at 9:01
MrLemon
15.2k33869
15.2k33869
asked Jun 2 '14 at 0:27
LavaTacoLavaTaco
21112
21112
Try/fill
, but I am not sure if the command exists for 1.7.2....
– AlfredPersonMc
Jun 2 '14 at 0:36
@AlfredPersonMc It isn't available for 1.7 yet.
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 0:59
add a comment |
Try/fill
, but I am not sure if the command exists for 1.7.2....
– AlfredPersonMc
Jun 2 '14 at 0:36
@AlfredPersonMc It isn't available for 1.7 yet.
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 0:59
Try
/fill
, but I am not sure if the command exists for 1.7.2....– AlfredPersonMc
Jun 2 '14 at 0:36
Try
/fill
, but I am not sure if the command exists for 1.7.2....– AlfredPersonMc
Jun 2 '14 at 0:36
@AlfredPersonMc It isn't available for 1.7 yet.
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 0:59
@AlfredPersonMc It isn't available for 1.7 yet.
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 0:59
add a comment |
5 Answers
5
active
oldest
votes
There's not an automatic way to do this in 1.7.2. If you're willing to be patient for 1.8 to come out, you can use the /fill
command.
- Go to one corner of your castle and press F3. Write down the coordinates.
- Go to the opposite diagonal corner in your castle and write down those coordinates too.
- Open the console, and type
/fill x1 y1 z1 x2 y2 z2 gold_block
with the above coordinates. This fills your entire castle floor with gold blocks.
I believe it's supposed to be gold_block not solidgold
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 2:27
add a comment |
or, if you're impatient, you can use the snapshots for a quick access then return to the current version (unless you're doing this on a server)
add a comment |
LavaTaco, another way to solve this is to use bukkit on the server. Install world edit, do //wand, select the floor, and set it to whatever you want
add a comment |
I am running on 1.7.10 with a lot of mods (with Forge) so I couldn't get a temporary 1.8 with this.
I ended up with this mod, [WorldEdit], which provides a lot of commands for easy world building. To fill a cubic area, I did the following:
- Get a "wand" with
//wand
command (yes, some WE commands begin with two slashes, not one) - Left-click and right-click two blocks in the to corners. This creates a selection of the cubic area marked by those two blocks
- If either of them is air, use
/setblock
to turn it into a solid block first (it's a MC builtin command)
- If either of them is air, use
//set obsidian
and the area is filled with Obsidian, replacing everything.
A full reference of WE commands can be found here.
Disclaimer: I am not affiliated with that mod.
add a comment |
You do /fill ~1 ~100 ~1 ~25 ~25 ~25 minecraft:stone to make a giant floating block.
add a comment |
protected by Community♦ Jan 4 '15 at 4:58
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
There's not an automatic way to do this in 1.7.2. If you're willing to be patient for 1.8 to come out, you can use the /fill
command.
- Go to one corner of your castle and press F3. Write down the coordinates.
- Go to the opposite diagonal corner in your castle and write down those coordinates too.
- Open the console, and type
/fill x1 y1 z1 x2 y2 z2 gold_block
with the above coordinates. This fills your entire castle floor with gold blocks.
I believe it's supposed to be gold_block not solidgold
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 2:27
add a comment |
There's not an automatic way to do this in 1.7.2. If you're willing to be patient for 1.8 to come out, you can use the /fill
command.
- Go to one corner of your castle and press F3. Write down the coordinates.
- Go to the opposite diagonal corner in your castle and write down those coordinates too.
- Open the console, and type
/fill x1 y1 z1 x2 y2 z2 gold_block
with the above coordinates. This fills your entire castle floor with gold blocks.
I believe it's supposed to be gold_block not solidgold
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 2:27
add a comment |
There's not an automatic way to do this in 1.7.2. If you're willing to be patient for 1.8 to come out, you can use the /fill
command.
- Go to one corner of your castle and press F3. Write down the coordinates.
- Go to the opposite diagonal corner in your castle and write down those coordinates too.
- Open the console, and type
/fill x1 y1 z1 x2 y2 z2 gold_block
with the above coordinates. This fills your entire castle floor with gold blocks.
There's not an automatic way to do this in 1.7.2. If you're willing to be patient for 1.8 to come out, you can use the /fill
command.
- Go to one corner of your castle and press F3. Write down the coordinates.
- Go to the opposite diagonal corner in your castle and write down those coordinates too.
- Open the console, and type
/fill x1 y1 z1 x2 y2 z2 gold_block
with the above coordinates. This fills your entire castle floor with gold blocks.
edited Apr 1 '15 at 0:06
Community♦
1
1
answered Jun 2 '14 at 0:48
GigazelleGigazelle
10.9k74698
10.9k74698
I believe it's supposed to be gold_block not solidgold
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 2:27
add a comment |
I believe it's supposed to be gold_block not solidgold
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 2:27
I believe it's supposed to be gold_block not solidgold
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 2:27
I believe it's supposed to be gold_block not solidgold
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 2:27
add a comment |
or, if you're impatient, you can use the snapshots for a quick access then return to the current version (unless you're doing this on a server)
add a comment |
or, if you're impatient, you can use the snapshots for a quick access then return to the current version (unless you're doing this on a server)
add a comment |
or, if you're impatient, you can use the snapshots for a quick access then return to the current version (unless you're doing this on a server)
or, if you're impatient, you can use the snapshots for a quick access then return to the current version (unless you're doing this on a server)
answered Jun 4 '14 at 7:06
jc3833jc3833
1432
1432
add a comment |
add a comment |
LavaTaco, another way to solve this is to use bukkit on the server. Install world edit, do //wand, select the floor, and set it to whatever you want
add a comment |
LavaTaco, another way to solve this is to use bukkit on the server. Install world edit, do //wand, select the floor, and set it to whatever you want
add a comment |
LavaTaco, another way to solve this is to use bukkit on the server. Install world edit, do //wand, select the floor, and set it to whatever you want
LavaTaco, another way to solve this is to use bukkit on the server. Install world edit, do //wand, select the floor, and set it to whatever you want
answered Jun 30 '14 at 7:15
LokiLoki
261
261
add a comment |
add a comment |
I am running on 1.7.10 with a lot of mods (with Forge) so I couldn't get a temporary 1.8 with this.
I ended up with this mod, [WorldEdit], which provides a lot of commands for easy world building. To fill a cubic area, I did the following:
- Get a "wand" with
//wand
command (yes, some WE commands begin with two slashes, not one) - Left-click and right-click two blocks in the to corners. This creates a selection of the cubic area marked by those two blocks
- If either of them is air, use
/setblock
to turn it into a solid block first (it's a MC builtin command)
- If either of them is air, use
//set obsidian
and the area is filled with Obsidian, replacing everything.
A full reference of WE commands can be found here.
Disclaimer: I am not affiliated with that mod.
add a comment |
I am running on 1.7.10 with a lot of mods (with Forge) so I couldn't get a temporary 1.8 with this.
I ended up with this mod, [WorldEdit], which provides a lot of commands for easy world building. To fill a cubic area, I did the following:
- Get a "wand" with
//wand
command (yes, some WE commands begin with two slashes, not one) - Left-click and right-click two blocks in the to corners. This creates a selection of the cubic area marked by those two blocks
- If either of them is air, use
/setblock
to turn it into a solid block first (it's a MC builtin command)
- If either of them is air, use
//set obsidian
and the area is filled with Obsidian, replacing everything.
A full reference of WE commands can be found here.
Disclaimer: I am not affiliated with that mod.
add a comment |
I am running on 1.7.10 with a lot of mods (with Forge) so I couldn't get a temporary 1.8 with this.
I ended up with this mod, [WorldEdit], which provides a lot of commands for easy world building. To fill a cubic area, I did the following:
- Get a "wand" with
//wand
command (yes, some WE commands begin with two slashes, not one) - Left-click and right-click two blocks in the to corners. This creates a selection of the cubic area marked by those two blocks
- If either of them is air, use
/setblock
to turn it into a solid block first (it's a MC builtin command)
- If either of them is air, use
//set obsidian
and the area is filled with Obsidian, replacing everything.
A full reference of WE commands can be found here.
Disclaimer: I am not affiliated with that mod.
I am running on 1.7.10 with a lot of mods (with Forge) so I couldn't get a temporary 1.8 with this.
I ended up with this mod, [WorldEdit], which provides a lot of commands for easy world building. To fill a cubic area, I did the following:
- Get a "wand" with
//wand
command (yes, some WE commands begin with two slashes, not one) - Left-click and right-click two blocks in the to corners. This creates a selection of the cubic area marked by those two blocks
- If either of them is air, use
/setblock
to turn it into a solid block first (it's a MC builtin command)
- If either of them is air, use
//set obsidian
and the area is filled with Obsidian, replacing everything.
A full reference of WE commands can be found here.
Disclaimer: I am not affiliated with that mod.
answered 8 mins ago
iBugiBug
237211
237211
add a comment |
add a comment |
You do /fill ~1 ~100 ~1 ~25 ~25 ~25 minecraft:stone to make a giant floating block.
add a comment |
You do /fill ~1 ~100 ~1 ~25 ~25 ~25 minecraft:stone to make a giant floating block.
add a comment |
You do /fill ~1 ~100 ~1 ~25 ~25 ~25 minecraft:stone to make a giant floating block.
You do /fill ~1 ~100 ~1 ~25 ~25 ~25 minecraft:stone to make a giant floating block.
answered Dec 14 '14 at 19:04
Witherman98Witherman98
1
1
add a comment |
add a comment |
protected by Community♦ Jan 4 '15 at 4:58
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
Try
/fill
, but I am not sure if the command exists for 1.7.2....– AlfredPersonMc
Jun 2 '14 at 0:36
@AlfredPersonMc It isn't available for 1.7 yet.
– DatEpicCoderGuyWhoPrograms
Jun 2 '14 at 0:59