#Effect Armor
1 messages · Page 1 of 1 (latest)
Yes, it is
This wiki page will tell you how:
https://wiki.bedrock.dev/items/custom-armor.html#bonus-making-set-effects
Y wrote that you need the player.json file from the vanilla Behavior pack but I don't know where to find it
?vanilla packs
Downloadable from: https://github.com/Mojang/bedrock-samples/releases
bedrock.dev archive: https://bedrock.dev/packs
GitHub (RP & BP) : https://github.com/bedrock-dot-dev/packs
Example particles: https://aka.ms/MCParticlesPack
Okay i check
For the record, I still haven't succeeded.
I would recommend you using hasitem, is simple enough to understand and works perfectly
Ill give you an example, in this command the players who wear full diamond armour will receive the speed effect: execute as @a[hasitem={item=diamond_helmet,location=slot.armor.head}] run execute as @a[hasitem={item=diamond_chestplate,location=slot.armor.chest}] run execute as @a[hasitem={item=diamond_leggings,location=slot.armor.legs}] run execute as @a[hasitem={item=diamond_boots,location=slot.armor.feet}] run effect @s speed 5 5 true
Okay
And where should I put it?
In a command block, or a function
Is it possible to make this activate only in the Nether? armor effects activate only when the player is in the Nether
or with the complete set
Type must use the full set of armor to gain the effect
If you can help me
@ocean ore
I believe there is some sort of if dimension for the execute command?
I don't know
execute if entity @a in nether as @a[hasitem={item=diamond_helmet,location=slot.armor.head}] run execute as @a[hasitem={item=diamond_chestplate,location=slot.armor.chest}] run execute as @a[hasitem={item=diamond_leggings,location=slot.armor.legs}] run execute as @a[hasitem={item=diamond_boots,location=slot.armor.feet}] run effect @s speed 5 5 true
there you go.
But will this only give effect to the boot? Or the whole set?
I understood
good
Thank you very much
No problem
I will test here