Is there a way to obtain the sympathy value between 2 factions given the factions GUIDs?
  • Not directly via GUIDs, but you can get the FactionSettings for a GUID and use that to get the sympathy value.

    Generally, all in-game faction sympathy handling is done via ORK.Game.Faction, e.g. to get the sympathy between to factions (via their GUIDs):
    float sympathy = ORK.Game.Faction.GetSympathy(ORK.Factions.Get(guid1), ORK.Factions.Get(guid2));
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
  • Worked perfectly, thank you Nicholas!
Sign In or Register to comment.