GhostWarrior13000 Posted September 30, 2020 Share Posted September 30, 2020 I made 2 spells, 1 teleports the follower directly in front of you the other one sends them back to their home. How do I make it so that when I summon the follower she automatically follows you and when I send her away she automatically dismisses? Link to comment Share on other sites More sharing options...
TyburnKetch Posted September 30, 2020 Share Posted September 30, 2020 (edited) Deleted Edited September 30, 2020 by TyburnKetch Link to comment Share on other sites More sharing options...
dylbill Posted September 30, 2020 Share Posted September 30, 2020 I assume you have script's already attached to the spell's magic effects for teleporting. You can add this to your scripts: DialogueFollowerScript Property DialogueFollower Auto Actor Property MyFollower Auto Event OnEffectStart(Actor akTarget, Actor akCaster) DialogueFollower.DismissFollower(0, 0) EndEvent Event OnEffectStart(Actor akTarget, Actor akCaster) DialogueFollower.SetFollower(MyFollower as ObjectReference) EndEventWhen filling the property, choose the DialogueFollower Quest and the DialogueFollowerScript. This is for setting and dismissing followers in the vanilla way. Link to comment Share on other sites More sharing options...
Recommended Posts