#265 Katja Pregnancy Talk issues

Open
opened 1 year ago by MistahIncognito · 0 comments

When telling Katja that you are pregnant for the first time if you already have a kid she congratulates you talking about her own pregnancy when you had no idea she was pregnant.

This scene can be found in both katja_dorm.qsrc and KatjaHomeTalk.qsrc

Section of code relevant to the scene:

if npc_pregtalk['A14'] = 0 and (KatjaConflict = 0 or katjaconflict = 2) and knowpreg = 1 and pregchem > 0 and func('body_din','pregnancyVisibility') = 0:
!!If you are pregnant you can tell Katja that you are. Diferent versions depending on if she is pregnant or not and if you already have kids.
    if  kid > 0:
        act 'Tell her you''re pregnant':
            cla & *clr
            gs 'stat'
            '<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
            '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big14.jpg"></center>'
            'Katja''s face lights up. "Congratulations! This is even more exciting than last time! Every time you tell me you’re pregnant, I feel even better about my own pregnancy. Hell, that''s probably the reason you keep getting pregnant, isn''t it?" She giggles while looking at you affectionately.'
            act 'Next':gt 'KatjaHomeTalk', 'katjaknows1'
        end     

    elseif knowKatjaPreg = 1:
        act 'Tell her you''re pregnant':
            cla & *clr
            '<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
            '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big14.jpg"></center>'
            '"What?! That''s so exiting! You didn''t get pregnant just to be like me, did you?" she asks playfully.'
            act 'Next':gt 'KatjaHomeTalk', 'katjaknows'
        end

    elseif KatjaPreg = 0:
        act 'Tell her you''re pregnant':
            cla & *clr
            '<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>'
            '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big14.jpg"></center>'
            '"What? That''s so exiting!"'
            act 'Next':gt 'KatjaHomeTalk', 'katjaknows'
        end
    end
end

Solution:

Replace line:

if  kid > 0:

with:

if  kid > 0 and knowKatjaPreg = 1:

Final Comments:

According to katja_procedural.qsrc, katja's pregnancy has been disabled until more content is available which makes her telling the player about being pregnant something that shouldn't currently be possible.

When telling Katja that you are pregnant for the first time if you already have a kid she congratulates you talking about her own pregnancy when you had no idea she was pregnant. This scene can be found in both katja_dorm.qsrc and KatjaHomeTalk.qsrc Section of code relevant to the scene: if npc_pregtalk['A14'] = 0 and (KatjaConflict = 0 or katjaconflict = 2) and knowpreg = 1 and pregchem > 0 and func('body_din','pregnancyVisibility') = 0: !!If you are pregnant you can tell Katja that you are. Diferent versions depending on if she is pregnant or not and if you already have kids. if kid > 0: act 'Tell her you''re pregnant': cla & *clr gs 'stat' '<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>' '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big14.jpg"></center>' 'Katja''s face lights up. "Congratulations! This is even more exciting than last time! Every time you tell me you’re pregnant, I feel even better about my own pregnancy. Hell, that''s probably the reason you keep getting pregnant, isn''t it?" She giggles while looking at you affectionately.' act 'Next':gt 'KatjaHomeTalk', 'katjaknows1' end elseif knowKatjaPreg = 1: act 'Tell her you''re pregnant': cla & *clr '<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>' '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big14.jpg"></center>' '"What?! That''s so exiting! You didn''t get pregnant just to be like me, did you?" she asks playfully.' act 'Next':gt 'KatjaHomeTalk', 'katjaknows' end elseif KatjaPreg = 0: act 'Tell her you''re pregnant': cla & *clr '<center><b><font color="maroon"><<$npc_firstname[''A14'']>> <<$npc_lastname[''A14'']>></font></b></center>' '<center><img <<$set_imgh>> src="images/characters/shared/headshots_main/big14.jpg"></center>' '"What? That''s so exiting!"' act 'Next':gt 'KatjaHomeTalk', 'katjaknows' end end end Solution: Replace line: if kid > 0: with: if kid > 0 and knowKatjaPreg = 1: Final Comments: According to katja_procedural.qsrc, katja's pregnancy has been disabled until more content is available which makes her telling the player about being pregnant something that shouldn't currently be possible.
Sign in to join this conversation.
No Label
No Milestone
No assignee
1 Participants
Loading...
Cancel
Save
There is no content yet.