Jump to content

[LE] Ride Horse Script


Recommended Posts

Hi all. I am really stuck finding this because nobody seems to talk about it since the activation of horses is there by default with the actortypehorse keyword and the saddlebone in the horse skeleton's .nif file, but I need to know the script for making the player ride the horse in skyrim. I know it's something along the lines of Event OnActivate(ObjectReference akActionRef) and then akTarget.Activate(PlayerRef, true) with EndEvent at the end.

âOr at least I think it is. All I need to know really is what the ride horse script is and how to put the ride horse script in a dialogue option: i.e. which functions do I need, what is the script property. I would really appreciate some help here, as my scripting knowledge is no too great (I AM trying to improve it, but I could really use some help with this script.)

Link to comment
Share on other sites

  • 3 years later...

You can just you use MyHorse.Activate(PlayerRef)

 

Here's the script I used to test:

 

ActorBase Property EncHorsePalomino Auto 
Actor Property PlayerRef Auto 

Event OnInit() 
   Actor Horse = PlayerRef.PlaceActorAtme(EncHorsePalomino, 1)
   Utility.Wait(2)
   Horse.Activate(PlayerRef)
   Debug.Notification("Mount Horse")
EndEvent
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...