Where I can read/edit companion relations?

Users who are viewing this thread

placenik

Knight at Arms
We all know about companion love-hate stuff, but where I can read whom with whom? I know it for native, but other modules are problem, I want to know where is it stored and how it is done  :mrgreen:
 
placenik said:
We all know about companion love-hate stuff, but where I can read whom with whom? I know it for native, but other modules are problem, I want to know where is it stored and how it is done  :mrgreen:
If you have the source files it is either part of scripts or triggers (it can be done in both files). There you will find something like this:
Code:
        (troop_set_slot, "trp_npc3", slot_troop_morality_type, tmt_humanitarian), #Ymira
        (troop_set_slot, "trp_npc3", slot_troop_morality_value, 4),  
        (troop_set_slot, "trp_npc3", slot_troop_2ary_morality_type, tmt_aristocratic), 
        (troop_set_slot, "trp_npc3", slot_troop_2ary_morality_value, -1),
        (troop_set_slot, "trp_npc3", slot_troop_personalityclash_object, "trp_npc14"), #Ymira - artimenner
        (troop_set_slot, "trp_npc3", slot_troop_personalityclash2_object, "trp_npc8"), #Ymira - matheld
        (troop_set_slot, "trp_npc3", slot_troop_personalitymatch_object, "trp_npc9"), #Ymira - alayen
        (troop_set_slot, "trp_npc3", slot_troop_home, "p_custom_settlement_30"), #Veluca
        (troop_set_slot, "trp_npc3", slot_troop_payment_request, 0),
There should also be parts of it in the conversations. I don't know what all of these codes represent, I know that slot_troop_home triggers the home conversation.
 
Back
Top Bottom