I've been working on looking into the QSP, but I am a pretty big novice here.
If you are using the CheatMod_20_Eng_Kin_sknf_Quack_V5.qsp It looks like line 126 of gs_standart_actions_npc_elsa is where you can suggest watching the lesbian movie as long as you have talked to her about lena and gotten Отношение_к_лесби to 100.
But it looks like the only locations you can do that in are defined here on line 112
elseif $location = 'bedroom_elsa_1' or $location = 'bedroom_elsa_2':
I seem to be stuck in bedroom_elsa_rest_2 and bedroom_elsa_rest_1 as defined in home_elsa lines 294 to 307
if day >= 1 and day <= 5:
if $character_Elsa['Sex'] = 0:
if hour >= 20 and hour <= 21:gs'gs_time_loc_home' & $location = 'bedroom_elsa_1' & gt 'bedroom_elsa_elsa'
if hour >= 22 and hour <= 23:gs'gs_time_loc_home' & $location = 'bedroom_elsa_2' & gt 'bedroom_elsa_elsa'
else
if hour >= 20 and hour <= 23:
if day = 2 or day = 4:
gt 'home_elsa','bedroom_elsa_rest_1'
else
gt 'home_elsa','bedroom_elsa_rest_2'
end
end
end
end
Which seems to say you can not have had sex with elsa in order to get there and watch a movie, but you kinda have to for the plot to advance. Lena doesn't even show up until you have sex with elsa 20 times.
So I found a hack way to do it.
Line 62 of gs_standart_actions_npc_elsa is the function for the location in the kitchen. We already have talk about lena there, so after that I threw in
if arrpos('$day_label','elsa_talk_about_lena') = -1:'<a href="exec:$day_label[]=''elsa_talk_about_lena'' & gt ''<<$location>>_elsa'',''talk_about_lena''">To talk about Lena</a>'
end
if $character_Elsa['Отношение_к_лесби']>=100 and $character_Elsa['Отношение_к_лесби']<200:
if arrpos('$day_label','elsa_ask_bi_film') = -1 and arrpos('$items','<img src="pic/items/lesbi_disk.jpg">') ! -1:'<a href="exec:$week_label[]=''elsa_ask_bi_film'' & $items_type = ''lesbi_disk'' & gs''gs_kill_items'' & gt ''<<$location>>_elsa'',''watch_bi_film''">Offer to watch a movie</a>'
end
The problem is that it will check ''<<$location>>_elsa'' which should be kitchen_elsa for the function watch_bi_film and that doesn't exist
to fix that, append the kitchen_elsa film with
if $args[0] = 'watch_bi_film':
cls
gs'gs_inv_show_block'
minutes +=60
'<div id="right-column">'
'<div id ="main-show"><video preload="metadata" autoplay loop height="500"><source src="pic/unique_npc/elsa/watch_bi_film.webm" type=''video/webm;''></video></div>'
'<div id ="text-show">'
if $data['события_эльза_смотрели_лесбо_фильм'] < 3:
'We watched for an hour lesbian porn, girl with wide open eyes looked at women having sex.'
else
'We watched for an hour lesbian porn, my girlfriend obviously wound up, looking at women in a spicy impressions.'
end
'</div>'
'<div id="acts-buttons">'
'<a href="exec:gs''gs_time_loc_home'' & gt ''home_elsa'',''hall''">To finish</a>'
'</div>'
'</div>'
end
this leaves the non working code in but hey, this is a qsp program so what ever