- May 14, 2022
- 229
- 267
and another GUare you using other mods?
because its working fine for me..
View attachment 2643099
when you finish the event does it fix itself?
and another GUare you using other mods?
because its working fine for me..
View attachment 2643099
when you finish the event does it fix itself?
It seems unrelated to this gallery moduleare you using other mods?
because its working fine for me..
View attachment 2643099
when you finish the event does it fix itself?
So I'm not sure if I missed anythingah ya it has to do with using a renpy.seen_label there its set to True when the label should be set to False
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"It seems unrelated to this gallery module
Oh,I see. Thank you very much for helping me out!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
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)Oh,I see. Thank you very much for helping me out!
Story progress is never related to sandbox stuff.Dont know if you need to finish a certain sandbox event for it. Cause i already did everyon of them up to that point
Hum, it's quite unsure to rely onno 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
seen_label
in the WT.elif ruby.level == 23 and not renpy.seen_label("ruby_23_birthday_intro"):
elif ruby.level == 23 and "ruby_story_event_23" in events_pool
elif not renpy.seen_label("mom_bcs_handjob_dialogue") or not renpy.seen_label("mom_bcs_titjob_dialogue"):
elif not mom_bcs_handjob.seen or not mom_bcs_titjob.seen:
need to go there at morning not afternoon despite what wt-mod says.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.
for ruby walkthrough i have unknown steps
Did I do something wrong or is it problem of mod?
This only happens if you somehow get Ruby's level higher than what is available in the game, it's a fail safe to prevent the mod from crashing. I'm not sure what you did to cause that.what happened?
I have it at night not afternoon, also the Event Trigger code for that Step:need to go there at morning not afternoon despite what wt-mod says.
gotta say that lewdlab has "interesting" music choice for this game.
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"
)
The code in the WT mod for Step 9, this should answer your question: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.
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)
well others are morning/afternoon and at afternoon nothing happens there.I have it at night not afternoon, also the Event Trigger code for that Step:
No, there is nothing thereHere 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?
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.Hum, it's quite unsure to rely onseen_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:
can ""probably"" be replaced by:Code:elif ruby.level == 23 and not renpy.seen_label("ruby_23_birthday_intro"):
Code:elif ruby.level == 23 and "ruby_story_event_23" in events_pool
Edit:
And
can be replaced by:Code:elif not renpy.seen_label("mom_bcs_handjob_dialogue") or not renpy.seen_label("mom_bcs_titjob_dialogue"):
Code:elif not mom_bcs_handjob.seen or not mom_bcs_titjob.seen:
now you feel same when sancho fixes inceton's and danielsk's code when making mods.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.