A Detectable Splash Potion Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How can I detect if a player has a specific item with a specific datavalue in their inventory?Detect when player attacks another playerBending a conditional chainHaving trouble testing for mobs around meSnapshot 18w02a: How do you set a custom name for an entity through commands?New commands not working?Clearing a Custom Lore Item from inventory Minecraft 1.13Is it possible to target entities with potion effects through any command?How to create an “impact grenade” in Minecraft 1.13?Distance command and tag command not working
I am not a queen, who am I?
How can players work together to take actions that are otherwise impossible?
Should I call the interviewer directly, if HR aren't responding?
Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?
List *all* the tuples!
Is there a "higher Segal conjecture"?
How do I mention the quality of my school without bragging
How to recreate this effect in Photoshop?
Why is black pepper both grey and black?
How much radiation do nuclear physics experiments expose researchers to nowadays?
How to motivate offshore teams and trust them to deliver?
When is phishing education going too far?
Is there a service that would inform me whenever a new direct route is scheduled from a given airport?
What does the "x" in "x86" represent?
Is 1 ppb equal to 1 μg/kg?
Why does Python start at index -1 when indexing a list from the end?
The logistics of corpse disposal
Doubts about chords
When to stop saving and start investing?
Is there a Spanish version of "dot your i's and cross your t's" that includes the letter 'ñ'?
Can Pao de Queijo, and similar foods, be kosher for Passover?
Is it true to say that an hosting provider's DNS server is what links the entire hosting environment to ICANN?
What is the musical term for a note that continously plays through a melody?
Stars Make Stars
A Detectable Splash Potion
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How can I detect if a player has a specific item with a specific datavalue in their inventory?Detect when player attacks another playerBending a conditional chainHaving trouble testing for mobs around meSnapshot 18w02a: How do you set a custom name for an entity through commands?New commands not working?Clearing a Custom Lore Item from inventory Minecraft 1.13Is it possible to target entities with potion effects through any command?How to create an “impact grenade” in Minecraft 1.13?Distance command and tag command not working
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
For context, I am creating a MOBA-style game within Minecraft, and there are a lot of different potions used within the game, each with their own unique effects.
Instead of using the in game potions, I am using potions that are supposed to have a custom data tag, so a Command Block can detect them, and execute a chain of corresponding commands. (This is to have potions that will only affect one team, instead of anyone).
Note: When the potion nears the ground, it activates the command chain at that location within the arena. I have already figured that out.
Here's where the problem that's been giving me trouble is.
The Repeating Command Block that's made to detect the Splash Potion with the custom tag, does not seem to be able to detect it. Here's what I've tried so far to get it to work (this is a test, tag is 123)
First, here's what I used to get the Testing Potion:
/give @s minecraft:splash_potionTags:["123"]
And here's what the Command Block to detect the potion (for testing) has had:
/execute if entity @e[type=minecraft:potion,tags=123]
/execute if entity @e[type=minecraft:potion,nbt=Tags:["123"]]
I have even tried things such as the custom potion colour, but nothing is able to trigger the Command Block.
Is there something I'm missing here? How can I make the Command Block acknowledge the potion with the custom NBT tags?
minecraft minecraft-commands
add a comment |
For context, I am creating a MOBA-style game within Minecraft, and there are a lot of different potions used within the game, each with their own unique effects.
Instead of using the in game potions, I am using potions that are supposed to have a custom data tag, so a Command Block can detect them, and execute a chain of corresponding commands. (This is to have potions that will only affect one team, instead of anyone).
Note: When the potion nears the ground, it activates the command chain at that location within the arena. I have already figured that out.
Here's where the problem that's been giving me trouble is.
The Repeating Command Block that's made to detect the Splash Potion with the custom tag, does not seem to be able to detect it. Here's what I've tried so far to get it to work (this is a test, tag is 123)
First, here's what I used to get the Testing Potion:
/give @s minecraft:splash_potionTags:["123"]
And here's what the Command Block to detect the potion (for testing) has had:
/execute if entity @e[type=minecraft:potion,tags=123]
/execute if entity @e[type=minecraft:potion,nbt=Tags:["123"]]
I have even tried things such as the custom potion colour, but nothing is able to trigger the Command Block.
Is there something I'm missing here? How can I make the Command Block acknowledge the potion with the custom NBT tags?
minecraft minecraft-commands
add a comment |
For context, I am creating a MOBA-style game within Minecraft, and there are a lot of different potions used within the game, each with their own unique effects.
Instead of using the in game potions, I am using potions that are supposed to have a custom data tag, so a Command Block can detect them, and execute a chain of corresponding commands. (This is to have potions that will only affect one team, instead of anyone).
Note: When the potion nears the ground, it activates the command chain at that location within the arena. I have already figured that out.
Here's where the problem that's been giving me trouble is.
The Repeating Command Block that's made to detect the Splash Potion with the custom tag, does not seem to be able to detect it. Here's what I've tried so far to get it to work (this is a test, tag is 123)
First, here's what I used to get the Testing Potion:
/give @s minecraft:splash_potionTags:["123"]
And here's what the Command Block to detect the potion (for testing) has had:
/execute if entity @e[type=minecraft:potion,tags=123]
/execute if entity @e[type=minecraft:potion,nbt=Tags:["123"]]
I have even tried things such as the custom potion colour, but nothing is able to trigger the Command Block.
Is there something I'm missing here? How can I make the Command Block acknowledge the potion with the custom NBT tags?
minecraft minecraft-commands
For context, I am creating a MOBA-style game within Minecraft, and there are a lot of different potions used within the game, each with their own unique effects.
Instead of using the in game potions, I am using potions that are supposed to have a custom data tag, so a Command Block can detect them, and execute a chain of corresponding commands. (This is to have potions that will only affect one team, instead of anyone).
Note: When the potion nears the ground, it activates the command chain at that location within the arena. I have already figured that out.
Here's where the problem that's been giving me trouble is.
The Repeating Command Block that's made to detect the Splash Potion with the custom tag, does not seem to be able to detect it. Here's what I've tried so far to get it to work (this is a test, tag is 123)
First, here's what I used to get the Testing Potion:
/give @s minecraft:splash_potionTags:["123"]
And here's what the Command Block to detect the potion (for testing) has had:
/execute if entity @e[type=minecraft:potion,tags=123]
/execute if entity @e[type=minecraft:potion,nbt=Tags:["123"]]
I have even tried things such as the custom potion colour, but nothing is able to trigger the Command Block.
Is there something I'm missing here? How can I make the Command Block acknowledge the potion with the custom NBT tags?
minecraft minecraft-commands
minecraft minecraft-commands
asked 48 mins ago
The Idiot GamerThe Idiot Gamer
58521129
58521129
add a comment |
add a comment |
0
active
oldest
votes
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%2f349060%2fa-detectable-splash-potion%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f349060%2fa-detectable-splash-potion%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