Started by
Joshualtd
on
Topic category: Help with Minecraft modding (Java Edition)
I have a problem where i need to freeze the player and remove his ability to move at all: no falling down, no walking, no jumping, no flying. I was able to do that by overriding velocity at earlier versions of MCreator, but ever since i've updated to newest version it stopped working and player is able to move. (can show how it works in past versions but not now)
Create a procedure with condition "on player tick update" then create 3 variables (x, y, z) where you are gonna put player's coordinates ( get event/target entity X coordinates, get event/target entity Y coordinates ...) and then put a block to teleport event target entity to your local variables x, y and z
I will try that, thanks