BetrayalSeeker Posted June 11, 2013 Share Posted June 11, 2013 (edited) - Edited October 11, 2013 by BetrayalSeeker Link to comment Share on other sites More sharing options...
SONNYSPAK Posted June 13, 2013 Share Posted June 13, 2013 I had a similar problem. You aren't setting the relationship rank to the appropriate rank. (3, which is Ally).Try This getowningquest().setstage(20) akspeaker.SetRelationshipRank(Game.GetPlayer(), 3) akspeaker.AddToFaction(PotentialFollowerFaction)Also, with the "I need you to do something" bit, it sounds like you have the "CurrentFollowerFaction" set to 1. You want to set this to -1. If that doesn't work for you, here's what I done to get mine to work... Create a relationship between the npc and the player. Set your follower as the parent, and the player as the child. set the relationship type to Acquaintance. Under the factions tab of you npc, add the "PotentialFollowerFaction" and hit ok. Then for your papyrus at the end of the dialouge, have this: getowningquest().setstage(20) akspeaker.SetRelationshipRank(Game.GetPlayer(), 3)That will bump the current relationship from 0 (neutral) to ally (3) Refer to this guide if you get stuck on anything, it helped me get my follower working.http://wiki.tesnexus.com/index.php/Adding_a_Follower_NPC_to_Skyrim Link to comment Share on other sites More sharing options...
Flammenzunge Posted July 15, 2013 Share Posted July 15, 2013 You should also include this line: akSpeaker.AddToFaction(CurrentFollowerFaction) akSpeaker.setFactionRank(CurrentFollowerFaction, 0) Link to comment Share on other sites More sharing options...
Recommended Posts