I am trying to change Margret and Saadia so that they can be married after their quests (Forsworn Conspiracy and In My Time of Need).
After I add them to PotentialMarriageFaction rank 0, I start looking into quest scripts regarding that.
From the quest Heart of Dibella I have seen the code segments at stage 200 (with the "Complete Quest" check mark):
Alias_Hamal.GetActorRef().SetRelationshipRank(Game.GetPlayer(), 1)Alias_Orla.GetActorRef().SetRelationshipRank(Game.GetPlayer(), 1)Alias_Anwen.GetActorRef().SetRelationshipRank(Game.GetPlayer(), 1)Alias_Senna.GetActorRef().SetRelationshipRank(Game.GetPlayer(), 1)
And from the lack of other settings that makes Orla, Anwen and Senna marriageable I would assume a similar line in the other npc's quests would also work. However putting the line
Alias_Saadia.GetActorRef().SetRelationshipRank(Game.GetPlayer(), 1)
At stage 200 (same Complete Quest check box and the branch with Saadia still in Whiterun) of MS08 (In My Time of Need) and hit compile does not make it work (I still have to use player.setrelationshiprank 1 in the command console in game to make the dialogue appear). What am I missing/ doing wrong?