Skeleton Tamed 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.

Typh

Member
Jan 27, 2017
14
2
0
25
code_language.skript:
on spawn of a skeleton:
    spawn 1 skeleton_horse_tamed at event-location
    wait 1 tick
    make the event-entity ride last spawned entity
    stop
i just want to make a skript, when skeleton spawning, a tamed skeleton horse will spawn and skeleton'll ride. How could i ?
 
The requests section is if you are requesting for a script to be made for you. In this case you are just looking for support on a script.

This thread has been moved to Skript Help > Skript
 
With SkQuery this isn't a problem :emoji_slight_smile:. So you could do something like this:

code_language.skript:
on spawn of a skeleton:
    spawn a skeleton horse at event-location
    tame last spawned entity to event-entity
    wait 1 tick
    make the event-entity ride last spawned entity
    stop

I havent tested it yet but it should work :emoji_slight_smile:
 
  • Like
Reactions: Typh
With SkQuery this isn't a problem :emoji_slight_smile:. So you could do something like this:

code_language.skript:
on spawn of a skeleton:
    spawn a skeleton horse at event-location
    tame last spawned entity to event-entity
    wait 1 tick
    make the event-entity ride last spawned entity
    stop

I havent tested it yet but it should work :emoji_slight_smile:
Thanks for help, it is tamed but i need with saddle because skeleton don't ride.
[doublepost=1485633352,1485632119][/doublepost]
code_language.skript:
on spawn of a skeleton:
    spawn a skeleton horse at event-location
    tame last spawned entity to event-entity
    make the last spawned entity wear a saddle
    wait 1 tick
    make the event-entity ride last spawned entity
    stop

i solved my problem with like this. But i still have a problem. I want to horse's move, but for it skeleton needs control skeleton horse. and this can't possible. How can i do this ?
[doublepost=1485928786][/doublepost]Up
 
Status
Not open for further replies.