Minecraft: Boost Loren?

Re
9

In today's https://www.youtube.com/...thejocraft (

video, I saw that Loren was boosted using command blocks. Does anyone know how this works?

an

You can change the motion of the Minecart with the / entitydata command and thus boost it.

Re

Hmm, isn't motion something that you can only "give" the entity once while spawning?

gl

Not just spawning once

You have to change the motion stop in a repeat command block and then it should work.

an

Nope, Motion is the current speed of an entity and can always be changed. Try it.

/ entitydata @e [type = minecart] {Motion: [0.0,1.0,0.0]}

Re

Ok, I've cobbled together this command:

/ execute as @e [type = minecart, distance = .1.5, limit = 1] run data merge entity @s {Motion: [0.0,0.0,10.0]}.

Seems to be working, thanks.

an

You're welcome, no problem.

Re

Unfortunately, you still don't get particularly fast. Is there a way to remove Minecarts' speed limit?

an

Nope. But you could just teleport it 20 times a second. With a repeating command block. Maybe it looks like it's super fast.

tp @e [type = minecart, distance = .1.5, limit = 1] ~ ~ ~ 0.1

Re

Thanks, I'll try.