How Would i make a player run on water and run up walls and phase through walls

Started by llamalife on

Topic category: Help with modding (Java Edition)

Last seen on 10:58, 9. Jul 2023
Joined Jul 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How Would i make a player run on water and run up walls and phase through walls

I'm making a flash mod and it needs to have said abilities.

Last seen on 02:28, 29. Mar 2024
Joined May 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
to run on water just check…
Fri, 04/24/2020 - 17:20

to run on water just check for water block at y-1 and give 1 tick levitation each time

to run up walls use if entity is sprinting, and check for

if block at x+1,y+1≠air

or if x-1,y-1≠air

or z-1,y+1≠air

or z+1,y-1≠air

give levitation

Run through walls, just check for if entity is printing, and check for

if block at x+1≠air

or if x-1≠air

or z-1≠air

or z+1≠air

then teleport

Last seen on 17:51, 22. Mar 2024
Joined Aug 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
This is a bit complicated…
Fri, 09/23/2022 - 20:17

This is a bit complicated since there's no "check for _ at x:_ y:_ z:_" procedure block and I have been trying lots of not working stuff and I searched the entire block pallet and still nothing so could someone please tell me what to do for that

Last seen on 15:33, 6. Jun 2023
Joined Mar 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
There is a "check if block…
Wed, 04/26/2023 - 12:18

There is a "check if block at x: y: z: is air/water block." Just set the values to a math block relative to the player coords.