1

Command block help requested... again...

HappyHippo77's Avatar HappyHippo779/19/18 2:48 pm
1 emeralds 194 6
9/20/2018 2:12 pm
HappyHippo77's Avatar HappyHippo77
Hey (again)! This time I was working on making explosive tags (A.K.A paper bombs, Naruto ninja tool) in Minecraft. I'm using an invisible armor stand being summoned in a certain position relative to the player holding the re-textured item in a certain way so it appears to be a paper bomb on the ground. Everything is working beautifully except for one thing. I want to have a smoke particle effect at the paper bomb but because of the way I am summoning the armor stand by looking down or up while using the paper bomb you can misplace the particles... Is there any way to use the "^ ^ ^" coordinates without effecting the y axis?
Posted by HappyHippo77's Avatar
HappyHippo77
Level 45 : Master Ninja
23

Create an account or sign in to comment.

6

1
09/20/2018 7:52 amhistory
Level 51 : Grandmaster Procrastinator
agentdid127
agentdid127's Avatar
  1. I could think of a way with 2 different armor stands. First summon one at the coordinators ~ ~ ~ . Have that armorstand constantly execute to you and tp it to ~ ~ ~ 0 ~. Finally, have your final armorstand execute the first one and teleport to ^ ^ ^(number). Theoretically, it should teleport it a few blocks in front of you without changing the x value
1
09/20/2018 2:12 pm
Level 45 : Master Ninja
HappyHippo77
HappyHippo77's Avatar
The problem has already been resolved but thanks for the effort anyway! :D
1
09/19/2018 3:19 pmhistory
Level 57 : Grandmaster Engineer
ShelLuser
ShelLuser's Avatar
Can you show us exactly what you're doing? Because sure, you can use the new ^ coordinates without changing anything, you do that in the same way you use the ~ positioning.

If I had to guess at what could be causing your issues is: /execute at vs. /execute positioned as. Both commands somewhat do the same with the major difference that 'positioned as' doesn't compensate for rotation while the first does; so if you use ^ then the actual position will always depend on rotation of the player. So if the player is looking at the ground then ^ ^ ^3 wouldn't merely mean "3 blocks in front of the player"; it would also compensate for rotation and therefor lower the y axis as well to compensate.

You can resolve that by using positioned as.
1
09/19/2018 5:35 pmhistory
Level 45 : Master Ninja
HappyHippo77
HappyHippo77's Avatar
Spoiler - click to reveal
scoreboard objectives add paperbombtimer dummy

execute as @e[type=item,nbt={Item:{id:"minecraft:diamond_hoe",tag:{Unbreakable:1,Damage:3,display:{Name:"{\"text\":\"Explosive Tag\"}",Lore:"Press Q to use!"]}}}}] at @s run summon armor_stand ~ ~-2.75 ~ {Tags:["paperbomb"],NoGravity:1,ShowArms:1,Invisible:1,HandItems:[{id:"minecraft:diamond_hoe",Count:1b,tag:{Damage:3,Unbreakable:1}},{}],Pose:{Body:[0f,0f,0f],LeftArm:[0f,0f,0f],RightArm:[-90f,0f,0f],LeftLeg:[0f,0f,0f],RightLeg:[0f,0f,0f],Head:[0f,0f,0f]},DisabledSlots:65793}

execute as @e[tag=paperbomb,scores={paperbombtimer=..1}] at @s run tp @s @p

scoreboard players add @e[tag=paperbomb] paperbombtimer 1

execute as @e[tag=paperbomb,scores={paperbombtimer=1..2}] at @s run tp @s ~ ~-1.4 ~

execute as @e[tag=paperbomb] at @s run kill @e[type=item,nbt={Item:{id:"minecraft:diamond_hoe",tag:{Unbreakable:1,Damage:3,display:{Name:"{\"text\":\"Explosive Tag\"}",Lore:"Press Q to use!"]}}}}]

execute as @e[tag=paperbomb,scores={paperbombtimer=280..}] at @s run summon tnt ~ ~ ~

execute as @e[tag=paperbomb,scores={paperbombtimer=280..}] at @s run kill @s

execute as @e[tag=paperbomb,scores={paperbombtimer=80..}] at @s if entity @a[distance=..2] run summon tnt ~ ~ ~

execute as @e[tag=paperbomb,scores={paperbombtimer=80..}] at @s if entity @a[distance=..2] run kill @s

I'm using a function (Code for the part I'm working on above in the spoiler). I want to add a particle effect to the paper bomb. Essentially I need a way to run a command relative to where the armor stand is rotated without effecting the y axis. Kind of like if "^ ~ ^" worked, but you can't mix "^" and "~".
1
09/19/2018 6:06 pm
Level 29 : Expert Engineer
SUPERIONtheKnight
SUPERIONtheKnight's Avatar
/execute rotated as @s rotated ~ 0 run setblock ^ ^ ^5 stone
~SUPERIONtheKnight
2
09/19/2018 6:20 pm
Level 45 : Master Ninja
HappyHippo77
HappyHippo77's Avatar
THANK YOU SO MUCH! It works!!!
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome