Minecraft execute command gives error message “Could not execute ”detect“ as Creeel” Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Minecraft; How can you use command blocks to detect player levels?Minecraft execute detect command not workingCommand blocks executing w/out required parameters metMinecraft using the /execute command for specific peopleMinecraft command execute problem + 1.9 scoreboard tag problemMinecraft /execute detection being touchyMinecraft Command Blocks: /testfor command for wearing a player head, then tpHow can I make a dropper with a specific pattern of items inside turn into a building?How to detect minecraft item (any fern) in correct item frame and in correct rotation (1.13)Use a execute command once
Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode
Selecting user stories during sprint planning
What is the appropriate index architecture when forced to implement IsDeleted (soft deletes)?
What do you call the main part of a joke?
How to improve on this Stylesheet Manipulation for Message Styling
Can a new player join a group only when a new campaign starts?
Triggering an ultrasonic sensor
Hangman Game with C++
Update module to run alter command
How does the math work when buying airline miles?
MLE of the unknown radius
Maximum summed subsequences with non-adjacent items
Why does the remaining Rebel fleet at the end of Rogue One seem dramatically larger than the one in A New Hope?
What's the meaning of "fortified infraction restraint"?
How to dry out epoxy resin faster than usual?
"Lost his faith in humanity in the trenches of Verdun" — last line of an SF story
Project Euler #1 in C++
How could we fake a moon landing now?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
Using audio cues to encourage good posture
Parallel Computing Problem
Do wooden building fires get hotter than 600°C?
How do I find out the mythology and history of my Fortress?
What is the difference between globalisation and imperialism?
Minecraft execute command gives error message “Could not execute ”detect“ as Creeel”
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Minecraft; How can you use command blocks to detect player levels?Minecraft execute detect command not workingCommand blocks executing w/out required parameters metMinecraft using the /execute command for specific peopleMinecraft command execute problem + 1.9 scoreboard tag problemMinecraft /execute detection being touchyMinecraft Command Blocks: /testfor command for wearing a player head, then tpHow can I make a dropper with a specific pattern of items inside turn into a building?How to detect minecraft item (any fern) in correct item frame and in correct rotation (1.13)Use a execute command once
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to make a puzzle map and I want a redstone block to be placed when a certain block is broken. I am putting this command into a Repeating, Always Active command block:
execute @p ~ ~ ~ detect -712 58 -1887 minecraft:air 0 setblock -729 56 -1884 minecraft:redstone_block
The command will always spit out "Could not execute "detect" as Creeel"
minecraft minecraft-commands
bumped to the homepage by Community♦ 22 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 1 more comment
I am trying to make a puzzle map and I want a redstone block to be placed when a certain block is broken. I am putting this command into a Repeating, Always Active command block:
execute @p ~ ~ ~ detect -712 58 -1887 minecraft:air 0 setblock -729 56 -1884 minecraft:redstone_block
The command will always spit out "Could not execute "detect" as Creeel"
minecraft minecraft-commands
bumped to the homepage by Community♦ 22 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
So a few things. First, you probably don't need to be usingexecute
, as it looks to be overkill for what you want. Instead, I would suggest usingtestforblock
, and use a conditional chain command block to perform thesetblock
. Second, you might be getting the error if the block you're targeting isn't loaded. While testing, were you in the area of the place you're trying to check?
– MBraedley
Jul 23 '17 at 3:01
Not able to get to computer to test right now but "detect" might require relative coordinates, not absolute coordinates.
– RS_Mind
Jul 23 '17 at 5:37
1. I think that the chunk not being loaded is the most likely cause. Try going near the coordinates you entered. Does it still happen then? Maybe you mixed up positive and negative coordinates or so? 2. Execute is completely ok for this. Why use two commands blocks if you can use one? 3. detect does not require relative coordinates.
– Fabian Röling
Jul 23 '17 at 8:42
@Fabian I'm not sayingexecute
won't work, but rather, my point is that it's easier to debug two simple commands compared to one complex command.
– MBraedley
Jul 23 '17 at 12:51
I played with that command. I initially got the same failed to execute detect. I removed the 'minecraft:' so it was detect 'air' and it started to function properly. I am not sure why. I then put your command into another command block in another position and it worked as is. I had another one not functioning and I put it back to impulse and then to repeat again and it functioned properly. You might try to move command block or remove 'minecraft:' or set it to impulse/need redstone and back. It definitely seems erratic and I don't understand why so I didn't post as an answer.
– IronAnvil
Jul 23 '17 at 15:30
|
show 1 more comment
I am trying to make a puzzle map and I want a redstone block to be placed when a certain block is broken. I am putting this command into a Repeating, Always Active command block:
execute @p ~ ~ ~ detect -712 58 -1887 minecraft:air 0 setblock -729 56 -1884 minecraft:redstone_block
The command will always spit out "Could not execute "detect" as Creeel"
minecraft minecraft-commands
I am trying to make a puzzle map and I want a redstone block to be placed when a certain block is broken. I am putting this command into a Repeating, Always Active command block:
execute @p ~ ~ ~ detect -712 58 -1887 minecraft:air 0 setblock -729 56 -1884 minecraft:redstone_block
The command will always spit out "Could not execute "detect" as Creeel"
minecraft minecraft-commands
minecraft minecraft-commands
edited Jul 23 '17 at 4:33
Vemonus
55.9k41218344
55.9k41218344
asked Jul 23 '17 at 2:46
CreelCreel
111
111
bumped to the homepage by Community♦ 22 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♦ 22 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
So a few things. First, you probably don't need to be usingexecute
, as it looks to be overkill for what you want. Instead, I would suggest usingtestforblock
, and use a conditional chain command block to perform thesetblock
. Second, you might be getting the error if the block you're targeting isn't loaded. While testing, were you in the area of the place you're trying to check?
– MBraedley
Jul 23 '17 at 3:01
Not able to get to computer to test right now but "detect" might require relative coordinates, not absolute coordinates.
– RS_Mind
Jul 23 '17 at 5:37
1. I think that the chunk not being loaded is the most likely cause. Try going near the coordinates you entered. Does it still happen then? Maybe you mixed up positive and negative coordinates or so? 2. Execute is completely ok for this. Why use two commands blocks if you can use one? 3. detect does not require relative coordinates.
– Fabian Röling
Jul 23 '17 at 8:42
@Fabian I'm not sayingexecute
won't work, but rather, my point is that it's easier to debug two simple commands compared to one complex command.
– MBraedley
Jul 23 '17 at 12:51
I played with that command. I initially got the same failed to execute detect. I removed the 'minecraft:' so it was detect 'air' and it started to function properly. I am not sure why. I then put your command into another command block in another position and it worked as is. I had another one not functioning and I put it back to impulse and then to repeat again and it functioned properly. You might try to move command block or remove 'minecraft:' or set it to impulse/need redstone and back. It definitely seems erratic and I don't understand why so I didn't post as an answer.
– IronAnvil
Jul 23 '17 at 15:30
|
show 1 more comment
So a few things. First, you probably don't need to be usingexecute
, as it looks to be overkill for what you want. Instead, I would suggest usingtestforblock
, and use a conditional chain command block to perform thesetblock
. Second, you might be getting the error if the block you're targeting isn't loaded. While testing, were you in the area of the place you're trying to check?
– MBraedley
Jul 23 '17 at 3:01
Not able to get to computer to test right now but "detect" might require relative coordinates, not absolute coordinates.
– RS_Mind
Jul 23 '17 at 5:37
1. I think that the chunk not being loaded is the most likely cause. Try going near the coordinates you entered. Does it still happen then? Maybe you mixed up positive and negative coordinates or so? 2. Execute is completely ok for this. Why use two commands blocks if you can use one? 3. detect does not require relative coordinates.
– Fabian Röling
Jul 23 '17 at 8:42
@Fabian I'm not sayingexecute
won't work, but rather, my point is that it's easier to debug two simple commands compared to one complex command.
– MBraedley
Jul 23 '17 at 12:51
I played with that command. I initially got the same failed to execute detect. I removed the 'minecraft:' so it was detect 'air' and it started to function properly. I am not sure why. I then put your command into another command block in another position and it worked as is. I had another one not functioning and I put it back to impulse and then to repeat again and it functioned properly. You might try to move command block or remove 'minecraft:' or set it to impulse/need redstone and back. It definitely seems erratic and I don't understand why so I didn't post as an answer.
– IronAnvil
Jul 23 '17 at 15:30
So a few things. First, you probably don't need to be using
execute
, as it looks to be overkill for what you want. Instead, I would suggest using testforblock
, and use a conditional chain command block to perform the setblock
. Second, you might be getting the error if the block you're targeting isn't loaded. While testing, were you in the area of the place you're trying to check?– MBraedley
Jul 23 '17 at 3:01
So a few things. First, you probably don't need to be using
execute
, as it looks to be overkill for what you want. Instead, I would suggest using testforblock
, and use a conditional chain command block to perform the setblock
. Second, you might be getting the error if the block you're targeting isn't loaded. While testing, were you in the area of the place you're trying to check?– MBraedley
Jul 23 '17 at 3:01
Not able to get to computer to test right now but "detect" might require relative coordinates, not absolute coordinates.
– RS_Mind
Jul 23 '17 at 5:37
Not able to get to computer to test right now but "detect" might require relative coordinates, not absolute coordinates.
– RS_Mind
Jul 23 '17 at 5:37
1. I think that the chunk not being loaded is the most likely cause. Try going near the coordinates you entered. Does it still happen then? Maybe you mixed up positive and negative coordinates or so? 2. Execute is completely ok for this. Why use two commands blocks if you can use one? 3. detect does not require relative coordinates.
– Fabian Röling
Jul 23 '17 at 8:42
1. I think that the chunk not being loaded is the most likely cause. Try going near the coordinates you entered. Does it still happen then? Maybe you mixed up positive and negative coordinates or so? 2. Execute is completely ok for this. Why use two commands blocks if you can use one? 3. detect does not require relative coordinates.
– Fabian Röling
Jul 23 '17 at 8:42
@Fabian I'm not saying
execute
won't work, but rather, my point is that it's easier to debug two simple commands compared to one complex command.– MBraedley
Jul 23 '17 at 12:51
@Fabian I'm not saying
execute
won't work, but rather, my point is that it's easier to debug two simple commands compared to one complex command.– MBraedley
Jul 23 '17 at 12:51
I played with that command. I initially got the same failed to execute detect. I removed the 'minecraft:' so it was detect 'air' and it started to function properly. I am not sure why. I then put your command into another command block in another position and it worked as is. I had another one not functioning and I put it back to impulse and then to repeat again and it functioned properly. You might try to move command block or remove 'minecraft:' or set it to impulse/need redstone and back. It definitely seems erratic and I don't understand why so I didn't post as an answer.
– IronAnvil
Jul 23 '17 at 15:30
I played with that command. I initially got the same failed to execute detect. I removed the 'minecraft:' so it was detect 'air' and it started to function properly. I am not sure why. I then put your command into another command block in another position and it worked as is. I had another one not functioning and I put it back to impulse and then to repeat again and it functioned properly. You might try to move command block or remove 'minecraft:' or set it to impulse/need redstone and back. It definitely seems erratic and I don't understand why so I didn't post as an answer.
– IronAnvil
Jul 23 '17 at 15:30
|
show 1 more comment
1 Answer
1
active
oldest
votes
Try this if you are in 1.13:
/execute as @p if block -712 58 -1887 minecraft:air run setblock -729 56 -1884 minecraft:redstone_block replace
In 1.12.2 I tried:
execute @p ~ ~ ~ detect -712 58 -1887 air 0 setblock -729 56 -1884 minecraft:redstone_block
and it worked. It only returned that message if there was already a redstone block there. Did you check if there was one or just check the command block?
BTW it worked when I used minecraft:air
instead of air as well.
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%2f314657%2fminecraft-execute-command-gives-error-message-could-not-execute-detect-as-cre%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
Try this if you are in 1.13:
/execute as @p if block -712 58 -1887 minecraft:air run setblock -729 56 -1884 minecraft:redstone_block replace
In 1.12.2 I tried:
execute @p ~ ~ ~ detect -712 58 -1887 air 0 setblock -729 56 -1884 minecraft:redstone_block
and it worked. It only returned that message if there was already a redstone block there. Did you check if there was one or just check the command block?
BTW it worked when I used minecraft:air
instead of air as well.
add a comment |
Try this if you are in 1.13:
/execute as @p if block -712 58 -1887 minecraft:air run setblock -729 56 -1884 minecraft:redstone_block replace
In 1.12.2 I tried:
execute @p ~ ~ ~ detect -712 58 -1887 air 0 setblock -729 56 -1884 minecraft:redstone_block
and it worked. It only returned that message if there was already a redstone block there. Did you check if there was one or just check the command block?
BTW it worked when I used minecraft:air
instead of air as well.
add a comment |
Try this if you are in 1.13:
/execute as @p if block -712 58 -1887 minecraft:air run setblock -729 56 -1884 minecraft:redstone_block replace
In 1.12.2 I tried:
execute @p ~ ~ ~ detect -712 58 -1887 air 0 setblock -729 56 -1884 minecraft:redstone_block
and it worked. It only returned that message if there was already a redstone block there. Did you check if there was one or just check the command block?
BTW it worked when I used minecraft:air
instead of air as well.
Try this if you are in 1.13:
/execute as @p if block -712 58 -1887 minecraft:air run setblock -729 56 -1884 minecraft:redstone_block replace
In 1.12.2 I tried:
execute @p ~ ~ ~ detect -712 58 -1887 air 0 setblock -729 56 -1884 minecraft:redstone_block
and it worked. It only returned that message if there was already a redstone block there. Did you check if there was one or just check the command block?
BTW it worked when I used minecraft:air
instead of air as well.
edited Jul 23 '18 at 6:47
chicks
97821323
97821323
answered Jul 23 '18 at 0:46
CrazyOlHoboJoeCrazyOlHoboJoe
78110
78110
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%2f314657%2fminecraft-execute-command-gives-error-message-could-not-execute-detect-as-cre%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
So a few things. First, you probably don't need to be using
execute
, as it looks to be overkill for what you want. Instead, I would suggest usingtestforblock
, and use a conditional chain command block to perform thesetblock
. Second, you might be getting the error if the block you're targeting isn't loaded. While testing, were you in the area of the place you're trying to check?– MBraedley
Jul 23 '17 at 3:01
Not able to get to computer to test right now but "detect" might require relative coordinates, not absolute coordinates.
– RS_Mind
Jul 23 '17 at 5:37
1. I think that the chunk not being loaded is the most likely cause. Try going near the coordinates you entered. Does it still happen then? Maybe you mixed up positive and negative coordinates or so? 2. Execute is completely ok for this. Why use two commands blocks if you can use one? 3. detect does not require relative coordinates.
– Fabian Röling
Jul 23 '17 at 8:42
@Fabian I'm not saying
execute
won't work, but rather, my point is that it's easier to debug two simple commands compared to one complex command.– MBraedley
Jul 23 '17 at 12:51
I played with that command. I initially got the same failed to execute detect. I removed the 'minecraft:' so it was detect 'air' and it started to function properly. I am not sure why. I then put your command into another command block in another position and it worked as is. I had another one not functioning and I put it back to impulse and then to repeat again and it functioned properly. You might try to move command block or remove 'minecraft:' or set it to impulse/need redstone and back. It definitely seems erratic and I don't understand why so I didn't post as an answer.
– IronAnvil
Jul 23 '17 at 15:30