PrimeNavigator Posted August 14, 2012 Share Posted August 14, 2012 I'm including a teleportation spell for my player home mod (http://skyrim.nexusmods.com/mods/21260/) using the following script: ObjectReference property teleDest autoEvent 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 More sharing options...
gasti89 Posted August 14, 2012 Share Posted August 14, 2012 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 More sharing options...
jrs3071 Posted September 7, 2012 Share Posted September 7, 2012 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 More sharing options...
Ghaunadaur Posted September 7, 2012 Share Posted September 7, 2012 I think the function FastTravel will also teleport the follower with the player. Link to comment Share on other sites More sharing options...
jrs3071 Posted September 7, 2012 Share Posted September 7, 2012 (edited) 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 September 7, 2012 by jrs3071 Link to comment Share on other sites More sharing options...
PrimeNavigator Posted October 10, 2012 Author Share Posted October 10, 2012 Yeah, this all goes right over my head. I'm gonna need to enlist some help. Link to comment Share on other sites More sharing options...
Recommended Posts