Jump to content

Papyrus: Teleporting with Followers


PrimeNavigator

Recommended Posts

I'm including a teleportation spell for my player home mod (http://skyrim.nexusmods.com/mods/21260/) using the following script:

 

ObjectReference property teleDest auto

Event OneffectFinish(Actor target, Actor caster)

target.moveto(teleDest)

EndEvent

 

Trouble is any active followers do not teleport with you and thus are forced to run to your new location. Anyone know where to find the script that will include the follower in the teleportation effect? I tried looking on the creation kit wiki but it's like trying to find one particular needle in a very large pile of needles. :wallbash:

Link to comment
Share on other sites

You can try getting the current alias for the follower quest and move it with you.

 

Something like

 

ObjectReference property teleDest auto

ReferenceAlias property Follower auto

Event OnEffectFinish(Actor target, Actor caster)
   target.moveto(teleDest)
   Follower.GetActorRef().MoveTo(TeleDest)
EndEvent

 

Not tested. You just have to find the correct alias in the vanilla follower quest (the one that's filled by the current follower).

Link to comment
Share on other sites

  • 4 weeks later...

You can try getting the current alias for the follower quest and move it with you.

 

Something like

 

ObjectReference property teleDest auto

ReferenceAlias property Follower auto

Event OnEffectFinish(Actor target, Actor caster)
   target.moveto(teleDest)
   Follower.GetActorRef().MoveTo(TeleDest)
EndEvent

 

Not tested. You just have to find the correct alias in the vanilla follower quest (the one that's filled by the current follower).

 

The code you give above does work. But, at least in my testing, it doesn't work AS EXPECTED. If the quest is running BEFORE the follower is made, Follower remains "NONE" even after the NPC has agreed to follow. If you start this quest AFTER there is already a follower it will work as expected.

 

My question: how to have an alias to Follower that is dynamically updated as the game is played. Any help out there? TIA

Link to comment
Share on other sites

 

The code you give above does work. But, at least in my testing, it doesn't work AS EXPECTED. If the quest is running BEFORE the follower is made, Follower remains "NONE" even after the NPC has agreed to follow. If you start this quest AFTER there is already a follower it will work as expected.

 

My question: how to have an alias to Follower that is dynamically updated as the game is played. Any help out there? TIA

 

I found the answer to my question. FWIW - here's what I did...

In my own quest I added a new quest stage. In that stage's fragment I added a ReferenceAlias property and set it to the 'Follower' alias from the 'DialogueFollower' quest (my own quest's follower alias is available by default). Then I added to the fragment this line: {myalias}.forceRefTo( {dialoguefolloweralias}.getActorRef() ).

 

Now that's done, I opened the 'DialogueFollower' quest and opened for editing 'DialogueFollowerScript'. Inside the 'setFollower()' function block I added a call on my quest to set the stage to the stage described above that assigns the follower.

 

Voila! Now, when an NPC agrees to follow, my quest's alias gets updated appropriately.

Edited by jrs3071
Link to comment
Share on other sites

  • 1 month later...
  • Recently Browsing   0 members

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