- Aug 14, 2017
- 109
- 158
in 'scripts/freeroam/episode10/ep10_freeroam_bbq_events.rpyc' you can find the moment of the choice (taking the shroom or not) :Yeah, there are many scripts and some scenes are hard to find. I think it's something related to this:
But I can find what this 'mc_info[6]' variable means... May that's what they're saying about... Smoking weed...Code:imagebutton at show_hide_dissolve: if affinity == "DIK" or (affinity == "NEUTRAL" and mc_info[6]): idle "mc_dik_idle" hover "mc_dik_hover" action (Function(addCPenalty),Hide("major_choice_screen"),Jump(mc_info[1])) else: idle "mc_dik_disabled" hover "mc_dik_disabled" action NullAction() imagebutton at show_hide_dissolve: idle "mc_neutral_idle" hover "mc_neutral_hover" action (Function(addNPenalty),Hide("major_choice_screen"),Jump(mc_info[3])) imagebutton at show_hide_dissolve: if affinity == "CHICK" or (affinity == "NEUTRAL" and not mc_info[6]): idle "mc_chick_idle" hover "mc_chick_hover" action (Function(addDPenalty),Hide("major_choice_screen"),Jump(mc_info[5])) else: idle "mc_chick_disabled" hover "mc_chick_disabled" action NullAction()
Code:
$ mc_info = ["{size=-1}Eat a shroom{/size}","ep10_bbq_shroom_label","{size=-1}Don't eat a shroom{/size}","ep10_bbq_no_shroom_label","{size=-1}Discourage use of shrooms{/size}","ep10_bbq_avoid_shroom_label",ep4_smoked_weed]
mc_info[0] = "{size=-1}Eat a shroom{/size}"
mc_info[1] = "ep10_bbq_shroom_label"
...
mc_info[6] = ep4_smoked_weed
(if mc_info[6] is True then DIK choice available else CHICK choice instead, NEUTRAL always available)