How to make a player control a saddled horse?

  • 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

FireGuy

New Member
Jun 20, 2018
8
0
0
20
Minecraft Version: 1.8.8
Skript Version: 2.2-dev36

Do you know how to make a player control a saddled horse? It's not working for me to control this per command.
Thanks :emoji_slight_smile:
 
I want to try a horse race.... but if i do "make the player ride a horse" the horse is not controllable :emoji_slight_smile:
 
okay, you could try this, but i believe the taming part requires skQuery

code_language.skript:
command /ride:
    trigger:
        spawn a horse at location of player
        equip last spawned horse with a saddle
        tame last spawned horse to player
        make player ride last spawned horse
[doublepost=1529950466,1529950400][/doublepost]scratch that, I THINK you can do this WITHOUT addons
code_language.skript:
command /ride:
    trigger:
        spawn a horse at location of player
        equip last spawned horse with a saddle
        set the tamer of last spawned horse to player
        make player ride last spawned horse
 
Status
Not open for further replies.