Talk:SetRelationshipRank - Actor

There are no discussions on this page.

This sample is right out of DialogueFollowerScript and shows setting a follower, which uses the SetRelationshipRank function in real use:

 Function SetFollower(ObjectReference FollowerRef)
   actor FollowerActor = FollowerRef as Actor
   FollowerActor.RemoveFromFaction(pDismissedFollower)
   If FollowerActor.GetRelationshipRank(Game.GetPlayer()) < 3 && FollowerActor.GetRelationshipRank(Game.GetPlayer()) >= 0
     FollowerActor.SetRelationshipRank(Game.GetPlayer(), 3)
   EndIf
   FollowerActor.SetPlayerTeammate()
   pFollowerAlias.ForceRefTo(FollowerActor)
   pPlayerFollowerCount.SetValue(1)	
 EndFunction

--Sollar 12:40, 13 June 2012 (EDT)

Return to "SetRelationshipRank - Actor" page.