Cloning command xbox one
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
So I'm trying to clone a square from original cordinates [(-666, 15, -339)(-671, 10, -335)] along the x axis by 6 spaces each time. I want the y and z axis to remain the same each time.
My thoughts where /clone -666 15 -339 -671 10 -335 -6 ~ ~ replace
. However it keeps trying to clone it out of the loaded chunk.
I'm trying to create a command block that one activated will just copy the space around it over and over in a straight line. Anyone have any ideas?
minecraft-commands xbox-one
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
|
show 4 more comments
So I'm trying to clone a square from original cordinates [(-666, 15, -339)(-671, 10, -335)] along the x axis by 6 spaces each time. I want the y and z axis to remain the same each time.
My thoughts where /clone -666 15 -339 -671 10 -335 -6 ~ ~ replace
. However it keeps trying to clone it out of the loaded chunk.
I'm trying to create a command block that one activated will just copy the space around it over and over in a straight line. Anyone have any ideas?
minecraft-commands xbox-one
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Firstly, you should always write the lower coordinates first. You can get all kinds of weird results otherwise.
– Fabian Röling
Jan 19 '18 at 7:28
Is the area loaded where you want to clone from?
– Fabian Röling
Jan 19 '18 at 7:31
Yes, and after sleeping on it I realized my original cordinates are not going to work as they need to be relative to the command block each time. What I'm going for is an infanant road kind of deal, just on a much larger scale, than typical 5x5 square you find. The question above is for my test area the end product Im replicating is about 5 times larger.
– Steven
Jan 19 '18 at 13:43
I once made an infinite cloning machine with just two blocks. So it shouldn't be too hard. Do you think that you can answer it yourself after a bit of research?
– Fabian Röling
Jan 19 '18 at 14:08
Cloning syntax is/clone <xyzlower> <xyzhigher> <xyzdestination> replace move
and now you somehow have to power it. Repeating command block would be possible, but would create an infinitely increasing amount of lag, so you need a different way.
– Fabian Röling
Jan 19 '18 at 14:09
|
show 4 more comments
So I'm trying to clone a square from original cordinates [(-666, 15, -339)(-671, 10, -335)] along the x axis by 6 spaces each time. I want the y and z axis to remain the same each time.
My thoughts where /clone -666 15 -339 -671 10 -335 -6 ~ ~ replace
. However it keeps trying to clone it out of the loaded chunk.
I'm trying to create a command block that one activated will just copy the space around it over and over in a straight line. Anyone have any ideas?
minecraft-commands xbox-one
So I'm trying to clone a square from original cordinates [(-666, 15, -339)(-671, 10, -335)] along the x axis by 6 spaces each time. I want the y and z axis to remain the same each time.
My thoughts where /clone -666 15 -339 -671 10 -335 -6 ~ ~ replace
. However it keeps trying to clone it out of the loaded chunk.
I'm trying to create a command block that one activated will just copy the space around it over and over in a straight line. Anyone have any ideas?
minecraft-commands xbox-one
minecraft-commands xbox-one
edited Jan 19 '18 at 5:16
Memor-X
8,7403693190
8,7403693190
asked Jan 19 '18 at 3:49
StevenSteven
11
11
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Firstly, you should always write the lower coordinates first. You can get all kinds of weird results otherwise.
– Fabian Röling
Jan 19 '18 at 7:28
Is the area loaded where you want to clone from?
– Fabian Röling
Jan 19 '18 at 7:31
Yes, and after sleeping on it I realized my original cordinates are not going to work as they need to be relative to the command block each time. What I'm going for is an infanant road kind of deal, just on a much larger scale, than typical 5x5 square you find. The question above is for my test area the end product Im replicating is about 5 times larger.
– Steven
Jan 19 '18 at 13:43
I once made an infinite cloning machine with just two blocks. So it shouldn't be too hard. Do you think that you can answer it yourself after a bit of research?
– Fabian Röling
Jan 19 '18 at 14:08
Cloning syntax is/clone <xyzlower> <xyzhigher> <xyzdestination> replace move
and now you somehow have to power it. Repeating command block would be possible, but would create an infinitely increasing amount of lag, so you need a different way.
– Fabian Röling
Jan 19 '18 at 14:09
|
show 4 more comments
Firstly, you should always write the lower coordinates first. You can get all kinds of weird results otherwise.
– Fabian Röling
Jan 19 '18 at 7:28
Is the area loaded where you want to clone from?
– Fabian Röling
Jan 19 '18 at 7:31
Yes, and after sleeping on it I realized my original cordinates are not going to work as they need to be relative to the command block each time. What I'm going for is an infanant road kind of deal, just on a much larger scale, than typical 5x5 square you find. The question above is for my test area the end product Im replicating is about 5 times larger.
– Steven
Jan 19 '18 at 13:43
I once made an infinite cloning machine with just two blocks. So it shouldn't be too hard. Do you think that you can answer it yourself after a bit of research?
– Fabian Röling
Jan 19 '18 at 14:08
Cloning syntax is/clone <xyzlower> <xyzhigher> <xyzdestination> replace move
and now you somehow have to power it. Repeating command block would be possible, but would create an infinitely increasing amount of lag, so you need a different way.
– Fabian Röling
Jan 19 '18 at 14:09
Firstly, you should always write the lower coordinates first. You can get all kinds of weird results otherwise.
– Fabian Röling
Jan 19 '18 at 7:28
Firstly, you should always write the lower coordinates first. You can get all kinds of weird results otherwise.
– Fabian Röling
Jan 19 '18 at 7:28
Is the area loaded where you want to clone from?
– Fabian Röling
Jan 19 '18 at 7:31
Is the area loaded where you want to clone from?
– Fabian Röling
Jan 19 '18 at 7:31
Yes, and after sleeping on it I realized my original cordinates are not going to work as they need to be relative to the command block each time. What I'm going for is an infanant road kind of deal, just on a much larger scale, than typical 5x5 square you find. The question above is for my test area the end product Im replicating is about 5 times larger.
– Steven
Jan 19 '18 at 13:43
Yes, and after sleeping on it I realized my original cordinates are not going to work as they need to be relative to the command block each time. What I'm going for is an infanant road kind of deal, just on a much larger scale, than typical 5x5 square you find. The question above is for my test area the end product Im replicating is about 5 times larger.
– Steven
Jan 19 '18 at 13:43
I once made an infinite cloning machine with just two blocks. So it shouldn't be too hard. Do you think that you can answer it yourself after a bit of research?
– Fabian Röling
Jan 19 '18 at 14:08
I once made an infinite cloning machine with just two blocks. So it shouldn't be too hard. Do you think that you can answer it yourself after a bit of research?
– Fabian Röling
Jan 19 '18 at 14:08
Cloning syntax is
/clone <xyzlower> <xyzhigher> <xyzdestination> replace move
and now you somehow have to power it. Repeating command block would be possible, but would create an infinitely increasing amount of lag, so you need a different way.– Fabian Röling
Jan 19 '18 at 14:09
Cloning syntax is
/clone <xyzlower> <xyzhigher> <xyzdestination> replace move
and now you somehow have to power it. Repeating command block would be possible, but would create an infinitely increasing amount of lag, so you need a different way.– Fabian Röling
Jan 19 '18 at 14:09
|
show 4 more comments
1 Answer
1
active
oldest
votes
So the command to copy a loctation relative to the execution location (command blocks laction or yours if you use command window) is as follows: /clone ~x ~y ~z ~x ~y ~z ~x ~y ~z. Count the number of blocks from your execution location and use that for your xyz cordinates.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "41"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f325211%2fcloning-command-xbox-one%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
So the command to copy a loctation relative to the execution location (command blocks laction or yours if you use command window) is as follows: /clone ~x ~y ~z ~x ~y ~z ~x ~y ~z. Count the number of blocks from your execution location and use that for your xyz cordinates.
add a comment |
So the command to copy a loctation relative to the execution location (command blocks laction or yours if you use command window) is as follows: /clone ~x ~y ~z ~x ~y ~z ~x ~y ~z. Count the number of blocks from your execution location and use that for your xyz cordinates.
add a comment |
So the command to copy a loctation relative to the execution location (command blocks laction or yours if you use command window) is as follows: /clone ~x ~y ~z ~x ~y ~z ~x ~y ~z. Count the number of blocks from your execution location and use that for your xyz cordinates.
So the command to copy a loctation relative to the execution location (command blocks laction or yours if you use command window) is as follows: /clone ~x ~y ~z ~x ~y ~z ~x ~y ~z. Count the number of blocks from your execution location and use that for your xyz cordinates.
answered Jan 23 '18 at 1:05
StevenSteven
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f325211%2fcloning-command-xbox-one%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Firstly, you should always write the lower coordinates first. You can get all kinds of weird results otherwise.
– Fabian Röling
Jan 19 '18 at 7:28
Is the area loaded where you want to clone from?
– Fabian Röling
Jan 19 '18 at 7:31
Yes, and after sleeping on it I realized my original cordinates are not going to work as they need to be relative to the command block each time. What I'm going for is an infanant road kind of deal, just on a much larger scale, than typical 5x5 square you find. The question above is for my test area the end product Im replicating is about 5 times larger.
– Steven
Jan 19 '18 at 13:43
I once made an infinite cloning machine with just two blocks. So it shouldn't be too hard. Do you think that you can answer it yourself after a bit of research?
– Fabian Röling
Jan 19 '18 at 14:08
Cloning syntax is
/clone <xyzlower> <xyzhigher> <xyzdestination> replace move
and now you somehow have to power it. Repeating command block would be possible, but would create an infinitely increasing amount of lag, so you need a different way.– Fabian Röling
Jan 19 '18 at 14:09