Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

lati100

Allies
  • Posts

    4
  • Joined

  • Last visited

Posts posted by lati100

  1. Hello i have no scripting experience. but i have a small script request. It basicly spawn a actor which is ready to use ai packages.

    so, it will be a small script attached to for example Dwemer button, when player clicks it it has 2 options : yes or no

    yes spawn him to example xmarker

    no does nothing

    and you can only do this once. when you press yes, the button disappears or just stands static and does nothing

    hopefully you understand my awful english.. and thanks in advance ! :P

  2. Hello, i have a fast question, im still very nooby with papyrus scripting but i somehow did working Driveable Carriage. and i dont have a smallest idea how to tether Items and containers etc. to it help would be ... good. :C

    this i used to tether carriage to horse.

    Scriptname CartAndHorseTether extends ObjectReference

    {Tether a horse to the prisoner cart.}

    ObjectReference Property TheHorse Auto

    {The horse to tether to.}

    Event OnCellLoad()

    ; Temp for testing

    if TestCartOn.GetValue() == 1

    enable()

    endif

    if isEnabled() == 0

    return

    endif

    ; move horse to "tether" marker (if they exist)

    if TheHorse && GetLinkedRef()

    TheHorse.Moveto(GetLinkedRef())

    (TheHorse as Actor).SetRestrained(true)

    endif

    self.TetherToHorse(TheHorse)

    if StopMotionFlag

    SetMotionType(Motion_Keyframed)

    else

    SetMotionType(Motion_Dynamic)

    endif

    EndEvent

    bool Property StopMotionFlag Auto

    {set to true to put cart into an immobile state}

    GlobalVariable property TestCartOn auto

    { if true, enable me}

×
×
  • Create New...