Ability to climb walls

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

VOIDDER

Member
Aug 23, 2018
27
0
1
33
Question: how to implement the ability to climb walls for the player (like spider mode)
 
the only reasonable thing i can think of is to make the "spider" player see vines in every wall and change the texture to nothing.

apart from this i'd just do something jump related OR make the player ride an invisible spider whenever the climbing happens
 
A few days ago I actually tried to do this by pushing the player up the wall on a right-click as I couldn't make anything else work, however it was really buggy and unstable so I didn't post it. I'll put it here if you are super desperate.
Code:
on rightclick:
    distance between player and player's targeted block is less than 2:
        player's pitch is between 64 and -64:
            push player upwards with speed .4
 
I suppose there is no way to simulate that each wall has a ladder, it would be very complicated.
internally in minecraft, how do spiders climb?