Shawnchapp

Engaged Member
Modder
Feb 13, 2018
2,186
6,970
It seems unrelated to this gallery module
no its actually is what caused the issue the gallery unlocker marks all labels as seen and the mod is using "if not renpy.seen_label" so when the mod is tryng to call the next step it can't because the label is already marked as "seen"

Edit: for wording
 
Last edited:
  • Like
Reactions: Dr.XxL

Dr.XxL

Member
May 14, 2022
229
267
no its actually is what causeed the issue the gallery unlocker marks all labels as seen and the mod is using "if not renpy.seen_label" and cause the mod mad all labels jmarked as "seen" the guide bugs out
Oh,I see. Thank you very much for helping me out!
 

Shawnchapp

Engaged Member
Modder
Feb 13, 2018
2,186
6,970
Oh,I see. Thank you very much for helping me out!
as a temp fix delete your persistent file from the save folder and the one in you appdata folder (you will lose access to all gallery unlocks tho, new ones will be added tho as you play)
 

Bibifoc

Engaged Member
Apr 7, 2018
2,451
5,537
no its actually is what caused the issue the gallery unlocker marks all labels as seen and the mod is using "if not renpy.seen_label" so when the mod is tryng to call the next step it can't because the label is already marked as "seen"

Edit: for wording
Hum, it's quite unsure to rely on seen_label in the WT.

@Lord Ashram
Sometimes variables are missing to be sure of the current step but you can probably use active events. For example:
Code:
elif ruby.level == 23 and not renpy.seen_label("ruby_23_birthday_intro"):
can ""probably"" be replaced by:
Code:
elif ruby.level == 23 and "ruby_story_event_23" in events_pool

Edit:
And
Code:
elif not renpy.seen_label("mom_bcs_handjob_dialogue") or not renpy.seen_label("mom_bcs_titjob_dialogue"):
can be replaced by:
Code:
elif not mom_bcs_handjob.seen or not mom_bcs_titjob.seen:
 
Aug 29, 2020
189
250
Does anyone know how to see this event, when I got to the tv room and I activate the event where you have to pinch her peson or kiss her it throws me at once step 10, I can't see step 9 am I doing something wrong.
 

cxx

Message Maestro
Nov 14, 2017
69,692
35,363
Hi. Step 4 of Eliana is not triggered. It says to come to Thorne's office, I come to his office, but MC says that he is not there and the door is locked and nothing happens.
need to go there at morning not afternoon despite what wt-mod says.


gotta say that lewdlab has "interesting" music choice for this game.
 

Lord Ashram

Well-Known Member
Modder
Dec 29, 2020
1,870
10,942
need to go there at morning not afternoon despite what wt-mod says.


gotta say that lewdlab has "interesting" music choice for this game.
I have it at night not afternoon, also the Event Trigger code for that Step:
Code:
define eliana_story_event_3 = Event(
        location="thorneoffice_office",
        category="main_story",
        label="eliana_3_breakin_dialogue",
        title=_("The First Steps"),
        main_condition=( "time.is_night()", _("I have a plan. Next step, Thorne's office, this night with Eliana.") ),
        locked_conditions=("eliana.level<3", _("Progress in Eliana's story to continue.")),
        image="eliana breakin 5",
        type="auto",
        next_event = "eliana_story_event_4"
       )
 

Lord Ashram

Well-Known Member
Modder
Dec 29, 2020
1,870
10,942
Does anyone know how to see this event, when I got to the tv room and I activate the event where you have to pinch her peson or kiss her it throws me at once step 10, I can't see step 9 am I doing something wrong.
The code in the WT mod for Step 9, this should answer your question:
Code:
elif thorne.level < 9:
            text "Isabel Walkthrough - Step 9" pos (27, 70) font "mod/OSB.ttf"
            text "- Complete Step #9 of the main story" pos (34, 142)
 
  • Like
Reactions: EL DIOS ITACHI

El_Loco

Member
Nov 15, 2019
362
373
Here is the event code for that:
You don't have permission to view the spoiler content. Log in or register now.

As you can see there is nothing special preventing you from doing that.
Is there an Icon at the bottom center of the screen at Thorne's Office to activate it and I forgot to add that to the WT?
No, there is nothing there
You don't have permission to view the spoiler content. Log in or register now.
 

Lord Ashram

Well-Known Member
Modder
Dec 29, 2020
1,870
10,942
Hum, it's quite unsure to rely on seen_label in the WT.

Lord Ashram
Sometimes variables are missing to be sure of the current step but you can probably use active events. For example:
Code:
elif ruby.level == 23 and not renpy.seen_label("ruby_23_birthday_intro"):
can ""probably"" be replaced by:
Code:
elif ruby.level == 23 and "ruby_story_event_23" in events_pool

Edit:
And
Code:
elif not renpy.seen_label("mom_bcs_handjob_dialogue") or not renpy.seen_label("mom_bcs_titjob_dialogue"):
can be replaced by:
Code:
elif not mom_bcs_handjob.seen or not mom_bcs_titjob.seen:
The 0.17 stuff for Ruby was difficult for me to try to code into the WT since there was only 2 ruby.levels but 5 Events/Steps. Also I am both mentally and physically exhausted from both this cancer shit and doing so much for this WT over the last 9 days. I wanted to get this mod updated so even I could check out what was new for 0.17, which the Ruby stuff was some of the hottest stuff in any of these games, but it has worn me down.

Again thanks for the help, but any more issues in the WT is just going to have to wait.

For those wanting to see the final Ruby stuff and having issues, here's the WT code that should give you the were and when:

You don't have permission to view the spoiler content. Log in or register now.
 

reaperxma

Newbie
Apr 6, 2021
23
26
So~! I got to ask~! is Joyce's(Mom) naked apron scene in the kitchen a one-time deal kind of thing or is it a repeatable event~!? cause no matter what I do, it just won't happen again~!
 
3.60 star(s) 345 Votes