I did as you said but this error comes outHello
In the script_ch03.rpy file, find :
Replace with :Python:label intro_sheet(): menu: "Random (narrow)" if _preferences.language == None: call intro_randomizer from _call_intro_randomizer jump intro_sheet "Reset (narrow)": call intro_resetter from _call_intro_resetter jump intro_sheet "Done (insensitiveNarrow)" if (fav_food == "(Select)" or fav_years == "(Select)" or fav_hobby == "(Select)" or fav_hobby_reason == "(Select)"): pass "Done (narrow)" if (fav_food != "(Select)" and fav_years != "(Select)" and fav_hobby != "(Select)" and fav_hobby_reason != "(Select)"): if _preferences.language == None: hide screen introduction_sheet with dissolve elif _preferences.language == "swedish": hide screen introduction_sheet_swedish with dissolve
Python:label intro_sheet(): menu: "Random (narrow)": call intro_randomizer from _call_intro_randomizer jump intro_sheet "Reset (narrow)": call intro_resetter from _call_intro_resetter jump intro_sheet "Done (insensitiveNarrow)" if (fav_food == "(Select)" or fav_years == "(Select)" or fav_hobby == "(Select)" or fav_hobby_reason == "(Select)"): pass "Done (narrow)" if (fav_food != "(Select)" and fav_years != "(Select)" and fav_hobby != "(Select)" and fav_hobby_reason != "(Select)"): hide screen introduction_sheet with dissolve
