joemann Posted February 22, 2018 Posted February 22, 2018 I am trying to add a "submissive" trait to a character in an event. submissive = { personality = yes random = no opposite_opinion = 20 martial = -1 intrigue = -2 diplomacy = 1 spouse_opinion = -5 general_opinion = -10 ai_ambition = -10 female_insult = INSULT_LAPDOG female_insult_adj = SLAVISH } I have tried both with brackets and without (which according to the wiki is the correct way to do it ). The trait is not added. Anybody see why not? # .230 Disciplining Spouse, Lover or Concubine - player is male, lover is female narrative_event = { id = RSLVisits.230 desc = "RSLVisits230" picture = discipline_spouse_01 title = rsl_disciplining_spouse is_triggered_only = yes # Triggered from .2 immediate = { event_target:rsl_visit_target = { random_list = { 20 = { ## resists punishment trigger = { is_dominant = yes } add_character_modifier = { name = rsl_very_sore_bottom duration = 60 } add_character_modifier = { name = rsl_correction_refused duration = 120 } host = { narrative_event = { id = RSLVisits.9202 }} ## cane her bottom make her scream } 80 = { ## doesn't resist add_character_modifier = { name = rsl_sore_bottom duration = 30 } add_character_modifier = { name = rsl_correction_accepted duration = 60 } random_list = { 90 = { # love it trigger = { is_submissive = yes } add_character_modifier = { name = rsl_good_sex duration = 30 } add_trait = submissive host = { narrative_event = { id = RSLVisits.9201 }} ## spank bottom make her come } 10 = { # normal reaction host = { narrative_event = { id = RSLVisits.9200 }} ## spank bottom } } } } } } option = { name = rsl_option1 } }
coleman1 Posted February 22, 2018 Posted February 22, 2018 Have you defined the " is_submissive" and " is_dominant" in scripted triggers? Otherwise, you can use "trait = submissive" in your trigger.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.