Question about female vassals

Users who are viewing this thread

SchwhatNow

Recruit
So I made a new char for the Lion Throne and realized that Lady Deneb is unmarried. I realized that the game treats her as a "man" so I figured that as a female char I could potentially marry her. Everything was working as it should and she even professed herself my ardent admirer, however the chat option to ask her "What would it take to cement a lasting alliance..." Doesn't show up when talking to her. Anyone know a way to fix this? It would have to be a txt file edit as my computer wont run python. Thanks in advance :smile:
 
Technically the LT lords shouldn't even have family.
Code:
#Ask for marriage, following courtship, both with or against lady's wishes

  [anyone|plyr,"lord_talk_ask_something_2", [
    (neg|faction_slot_eq, "$g_talk_troop_faction", slot_faction_leader, "$g_talk_troop"),
    (neg|troop_slot_eq, "$g_talk_troop", slot_lord_granted_courtship_permission, 1),
    (neg|troop_slot_ge, "trp_player", slot_troop_spouse, active_npcs_begin),
    (troop_get_type, ":is_female", "$g_talk_troop"),
    (eq, ":is_female", tf_male),
  ],
   "What would it take to cement a lasting alliance with your house?", "lord_talk_ask_marriage_1",[]],
As you can see, the last line in those conditions makes it so the dialog option only appears with male lords. Females are assumed to have male guardians in Native. This translates to approximately the following code
Code:
dlga_lord_talk_ask_something_2:lord_talk_ask_marriage_1 69631 916  5 2147484190 3 144115188075855884 11 144115188075855882 2147484188 3 144115188075855882 38 1 2147484208 3 360287970189639680 30 360287970189640031 1506 2 1224979098644774912 144115188075855882 31 2 1224979098644774912 0 What_would_it_take_to_cement_a_lasting_alliance_with_your_house?  932  0 NO_VOICEOVER
Change that last 1224979098644774912 to 0, so that the last equality check will always evaluate to true (eq, 0, 0),
 
Back
Top Bottom