H*A

Newbie
May 24, 2018
24
26
For anyone running into exceptions during Danni's content, i.e.:
Python:
Exception: DynamicImage u'Characters/Danni/[dan.outfit_non_nude]_[dan.pose].png': could not find image.
It seems to be caused by Danni's normal sprite not being hidden, when it likely should be.

Simple fix, if you're happy to change the code, is to add the following line:

call hide_char_sprite (dan) as shown in the code snippet below.

Python:
label danni_makeout:
    player "Hey Danni. Where's Steph?"
    dan "Making out with Freddy..."
    "She says with a glint in her eye."
    menu:
        "Make out with Danni.":
            $ advance_time_flag = True
            player "Sounds like a good idea..."
            dan "My thoughts exactly!"
            ##### Here. ⬇
            call hide_char_sprite (dan)
            ##### Here. ⬆
            if sis.corruption >=25 and sis.corruption < 50:
The file is /game/chars/char_Danni.rpy

Not going to upload a fixed file, as the file is vanilla/mod-specific (hence not naming the line number).
 

omega_white

New Member
Jan 30, 2018
6
3
For anyone running into exceptions during Danni's content, i.e.:
Python:
Exception: DynamicImage u'Characters/Danni/[dan.outfit_non_nude]_[dan.pose].png': could not find image.
It seems to be caused by Danni's normal sprite not being hidden, when it likely should be.

Simple fix, if you're happy to change the code, is to add the following line:

call hide_char_sprite (dan) as shown in the code snippet below.

Python:
label danni_makeout:
    player "Hey Danni. Where's Steph?"
    dan "Making out with Freddy..."
    "She says with a glint in her eye."
    menu:
        "Make out with Danni.":
            $ advance_time_flag = True
            player "Sounds like a good idea..."
            dan "My thoughts exactly!"
            ##### Here. ⬇
            call hide_char_sprite (dan)
            ##### Here. ⬆
            if sis.corruption >=25 and sis.corruption < 50:
The file is /game/chars/char_Danni.rpy

Not going to upload a fixed file, as the file is vanilla/mod-specific (hence not naming the line number).
When I go into my /game/ file I see lots of rpa files, but no specific /chars/ file to get to the section you are referring to. Should I be looking elsewhere?
 
  • Like
Reactions: H*A

sillyrobot

Engaged Member
Apr 22, 2019
2,025
1,796
When I go into my /game/ file I see lots of rpa files, but no specific /chars/ file to get to the section you are referring to. Should I be looking elsewhere?
They're packed into the archives (.rpa files). There are a few tools to unpack the archives and see the individual files.

I use
 
Last edited:
  • Like
Reactions: H*A

CapPingu

Newbie
Mar 5, 2018
35
25
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/locations/loc_school.rpy", line 2484, in script call
    call jackson_school_mischief3
  File "game/func_action_processing.rpy", line 18, in script call
    call interacts (get_char_by_ikey(interact_who))
  File "game/func_action_processing.rpy", line 330, in script call
    call process_interact_action (char, param)
  File "game/func_action_processing.rpy", line 486, in script call
    call person_engage (char, action)
  File "game/func_interactions.rpy", line 467, in script call
    call show_char_sprite (char)
  File "game/util/func_images.rpy", line 493, in script call
    call show_char_spriteR (char)
  File "game/util/func_images.rpy", line 424, in script
    $ renpy.show(char.ikey + '_sprite', tag='tmp_sprite_' + char.ikey, at_list=[right])
  File "game/util/func_images.rpy", line 424, in <module>
    $ renpy.show(char.ikey + '_sprite', tag='tmp_sprite_' + char.ikey, at_list=[right])
Exception: DynamicImage u'Characters/Sister/[sis.outfit]_[sis.pose].png': could not find image. (u'Characters/Sister/wild_fetish5.png')

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/locations/loc_school.rpy", line 2484, in script call
    call jackson_school_mischief3
  File "game/func_action_processing.rpy", line 18, in script call
    call interacts (get_char_by_ikey(interact_who))
  File "game/func_action_processing.rpy", line 330, in script call
    call process_interact_action (char, param)
  File "game/func_action_processing.rpy", line 486, in script call
    call person_engage (char, action)
  File "game/func_interactions.rpy", line 467, in script call
    call show_char_sprite (char)
  File "game/util/func_images.rpy", line 493, in script call
    call show_char_spriteR (char)
  File "game/util/func_images.rpy", line 424, in script
    $ renpy.show(char.ikey + '_sprite', tag='tmp_sprite_' + char.ikey, at_list=[right])
  File "renpy/ast.py", line 928, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "renpy/python.py", line 2245, in py_exec_bytecode
    exec(bytecode, globals, locals)
  File "game/util/func_images.rpy", line 424, in <module>
    $ renpy.show(char.ikey + '_sprite', tag='tmp_sprite_' + char.ikey, at_list=[right])
  File "renpy/exports.py", line 768, in show
    sls.add(layer, img, key, zorder, behind, at_list=at_list, name=name, atl=atl, default_transform=default_transform, transient=transient)
  File "renpy/display/core.py", line 1147, in add
    thing.visit_all(lambda d : None)
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 558, in visit_all
    for d in self.visit():
  File "renpy/display/image.py", line 744, in visit
    self.find_target()
  File "renpy/display/image.py", line 652, in find_target
    raise Exception(error)
Exception: DynamicImage u'Characters/Sister/[sis.outfit]_[sis.pose].png': could not find image. (u'Characters/Sister/wild_fetish5.png')

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
SP 0.45.03
Mon Mar 28 18:36:56 2022
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/locations/loc_school.rpy", line 2484, in script call
    call jackson_school_mischief3
  File "game/func_action_processing.rpy", line 18, in script call
    call interacts (get_char_by_ikey(interact_who))
  File "game/func_action_processing.rpy", line 336, in script call
    call process_negative_action (char, param)
  File "game/func_action_processing.rpy", line 726, in script call
    call expression char.ikey + "_coercedbj_script"
  File "game/chars/char_Anne.rpy", line 2141, in script call
    call pause_scene
  File "game/util/func_utils.rpy", line 332, in script
    pause
  File "renpy/common/000statements.rpy", line 455, in execute_pause
    renpy.pause()
  File "game/radioactive/devcheat.rpy", line 116, in DevPause
    rv = renpy.ui.interact(mouse='pause', type='pause', roll_forward=roll_forward)
Exception: DynamicImage u'Characters/Anne/Negative/[an.outfit]_[an.pose].png': could not find image. (u'Characters/Anne/Negative/work2_coercedbj2.png')

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/locations/loc_school.rpy", line 2484, in script call
    call jackson_school_mischief3
  File "game/func_action_processing.rpy", line 18, in script call
    call interacts (get_char_by_ikey(interact_who))
  File "game/func_action_processing.rpy", line 336, in script call
    call process_negative_action (char, param)
  File "game/func_action_processing.rpy", line 726, in script call
    call expression char.ikey + "_coercedbj_script"
  File "game/chars/char_Anne.rpy", line 2141, in script call
    call pause_scene
  File "game/util/func_utils.rpy", line 332, in script
    pause
  File "renpy/ast.py", line 2015, in execute
    self.call("execute")
  File "renpy/ast.py", line 2003, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "renpy/statements.py", line 278, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 455, in execute_pause
    renpy.pause()
  File "game/radioactive/devcheat.rpy", line 116, in DevPause
    rv = renpy.ui.interact(mouse='pause', type='pause', roll_forward=roll_forward)
  File "renpy/ui.py", line 298, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "renpy/display/core.py", line 3325, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
  File "renpy/display/core.py", line 3737, in interact_core
    root_widget.visit_all(lambda i : i.per_interact())
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 570, in visit_all
    callback(self)
  File "renpy/display/core.py", line 3737, in <lambda>
    root_widget.visit_all(lambda i : i.per_interact())
  File "renpy/display/image.py", line 752, in per_interact
    self.find_target()
  File "renpy/display/image.py", line 652, in find_target
    raise Exception(error)
Exception: DynamicImage u'Characters/Anne/Negative/[an.outfit]_[an.pose].png': could not find image. (u'Characters/Anne/Negative/work2_coercedbj2.png')

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
SP 0.45.03
Mon Mar 28 18:43:49 2022

Getting this error while trying to unlock Steph fetish at the mall (1st visit) and that error while trying to unlock Anne's forced blowjob
 

Birulei

Member
Oct 12, 2018
462
824
How to unlock Danni's fetish? What should i do? What thing i'm missing to unlock her fetish? I already went to shopping with her and already talk with Steph about her, but nothing happens, need i do this things over than 100 times?
 

Phoexist

Member
Mar 11, 2020
444
485
How to unlock Danni's fetish? What should i do? What thing i'm missing to unlock her fetish? I already went to shopping with her and already talk with Steph about her, but nothing happens, need i do this things over than 100 times?
Haven't done that with her yet, but if it is like the other fetishes it is linked to her corruption. Corruption typically needs to be 40+ to complete all of the fetish sequences.
 

Birulei

Member
Oct 12, 2018
462
824
Haven't done that with her yet, but if it is like the other fetishes it is linked to her corruption. Corruption typically needs to be 40+ to complete all of the fetish sequences.
I know, i already have every possible fetishes and her corruption is higher than 60, but i can't unlock her fetish, that's why i'm asking how to unlock it.

The only thing that i didn't try is basically the scenes between Mom and Sis, you know, the jealous stuffs.
 

sillyrobot

Engaged Member
Apr 22, 2019
2,025
1,796
How to unlock Danni's fetish? What should i do? What thing i'm missing to unlock her fetish? I already went to shopping with her and already talk with Steph about her, but nothing happens, need i do this things over than 100 times?
Take her on dates, if I'm reading the code correctly.
 

AnotherMike

Member
Mar 26, 2020
111
55
How to unlock Danni's fetish? What should i do? What thing i'm missing to unlock her fetish? I already went to shopping with her and already talk with Steph about her, but nothing happens, need i do this things over than 100 times?
After you've gotten so far that you no longer have any options to talk with her under small or large requests, you can start meeting her at the coffee shop on Tuesday afternoons, repeat that a few times (three I think?) to unlock her fetish.
 
  • Like
Reactions: Birulei

Birulei

Member
Oct 12, 2018
462
824
After you've gotten so far that you no longer have any options to talk with her under small or large requests, you can start meeting her at the coffee shop on Tuesday afternoons, repeat that a few times (three I think?) to unlock her fetish.
Yeah, it was exactly the stuff that i was missing, still didn't unlocked it, but at least i think i'm in the right path, thanks, only one more and i think it will be unlocked(i already did twice).
 

Passion3D

Well-Known Member
Modder
Nov 10, 2017
1,258
6,875
The repack SP_0.45.03 and update of the SFC mod is in progress.
Still some tests to do.
 
Last edited:
  • Like
Reactions: D Dog
3.20 star(s) 139 Votes