TheimmortalP
Active Member
- Jan 4, 2019
- 978
- 475
- 143
So you can do every route in one playthrough?There is only one hard choice between two alternative girls, but all the others are at your disposal at the same time.
So you can do every route in one playthrough?There is only one hard choice between two alternative girls, but all the others are at your disposal at the same time.
I'm currently stuck in the same area (accidentally rolled back when I was supposed to check on Odette, now I can't do anything), and this didn't work. I tried *gamedir*/game/scripts/locks and *gamedir*/game/scripts/locks;, neither of which work. I know this is a couple-year-old post, but you'd probably know more about this than I would.Well lucky for you, me, and everyone else I'm a fairly talented programmer and there was a newer version of unren available which could actually handle all of STS's files. Basically the problem happens because somehow their quest control system gets confused and got set back/stuck in a state that was supposed to keep you locked in the garage until you talked to Odette but since you're outside the garage and it won't let you go to any location you're SOL. Anyway I modded the lock so it wouldn't let you go anywhere except the garage and it fixes the issue. Put it in *gamedir*/game/scripts/locks; anywhere else will result in a game breaking error on startup.
I probably could but honestly it's been over a year since I've even touched that game thanks to the dev becoming a leech. He's supposedly clearing around $70k a month and as a result is dragging his ass on actually finishing the project.I'm currently stuck in the same area (accidentally rolled back when I was supposed to check on Odette, now I can't do anything), and this didn't work. I tried *gamedir*/game/scripts/locks and *gamedir*/game/scripts/locks;, neither of which work. I know this is a couple-year-old post, but you'd probably know more about this than I would.
It keeps creating an .rpyc file which causes the game to crash.
EDIT 1: Map is greyed out, and I'm stuck where I'm at. Rolling back further doesn't help either, since I'd be stuck at the school. Any way you could forcefully unlock the map?
Those are exactly the three Girls the latest update is all about. I suggest reading the changelog, maybe...Who are the 3 characters that are missing?
LAtest change log doesn't mention new charactersThose are exactly the three Girls the latest update is all about. I suggest reading the changelog, maybe...
My bad for asking you. I didn't know that the dev was like that. My earliest save actually had the same bug, and the one before that was hours of work behind. I'll just restart the game from scratch...again, lol. Sorry thoughI probably could but honestly it's been over a year since I've even touched that game thanks to the dev becoming a leech. He's supposedly clearing around $70k a month and as a result is dragging his ass on actually finishing the project.
As to why that old mod breaks the game it's almost certainly because they've made code changes since I made that file which are causing conflicts. My best suggestion is reload an earlier save or contact the dev about the issue cause I'm not gonna bother fixing their unnecessarily complicated janky ass code again until the game in finished.
Of course it does. Post 1 of the main thread already mentions Katya and Khadne. The changelog is also accessible in-game (click on the version number in the main screen) and there via click on "Spoilers: Click for hints...".LAtest change log doesn't mention new characters
No need for apologies. It's the dev I have issues with, not really your request. You might try asking srksrk-68 if he'll produce a fix since he's still actively producing a mod for the game.My bad for asking you. I didn't know that the dev was like that. My earliest save actually had the same bug, and the one before that was hours of work behind. I'll just restart the game from scratch...again, lol. Sorry though
My bad for asking you. I didn't know that the dev was like that. My earliest save actually had the same bug, and the one before that was hours of work behind. I'll just restart the game from scratch...again, lol. Sorry though
If it can be fixed, the fix is already in my mod. Feel free to try it outNo need for apologies. It's the dev I have issues with, not really your request. You might try asking srksrk-68 if he'll produce a fix since he's still actively producing a mod for the game.
Unfortunately I already restarted my playthrough and got to where I was before and a little bit past that. Before that though, I did add the Naughty Tribute mod, but I'm not sure if I'm seeing many differences. I don't want to look at the unmodded game to reference though. I get some error about not being able to load the game normally, but it hasn't broken my game so far.If it can be fixed, the fix is already in my mod. Feel free to try it out
A little background: The game represents the characters as state machines, and they change states when triggered by triggers that occur while proceeding the story. The game has rollback disabled by default for a reason because those state transitions cannot normally be rolled back. When a saved game is loaded, the sequence of all triggers that occured so far is re-played on all state machines so that, in theory, the current state is reached.
When such a trigger chain is broken, it may be that a trigger is being applied to a state maching that has the wrong state, so that the target state will not be reached and it stays in the current state. As a result, all following triggers run void as well because they assume a further progressed state already.
The mod fixes that in a way that whenever a trigger cannot be applied to a state machine, it does a depth search on all triggers and states to find a path from the current state to the target state of the current trigger, and applies all those triggers before. That way, the current trigger can be applied and the state can correctly progress.
That will work in most cases, except when it is so broken that a certain search depth is reached, in which case it will stop searching to prevent deadlocks. However, I never encountered such a case.
Not changed. You still have to impregnate Maria. The addition is that when you allow Tony to participate, Maria gets DPed by you two in the repeatable scenes. She's never been happier since.I just got to the main story part where (spoilers, beware!), did they change it from a previous version? I thought it was NTR at first...You don't have permission to view the spoiler content. Log in or register now.
Ya I don't know why they decided to bolt such an unwieldy state system with zero error correction onto Renpy, seriously it must have increased their code base 10 fold, but they did. Nice to hear you added the error correction they should have and as long as you're doing error checks based on the location lockouts for the previous steps in the stack than ya it should catch this error. Looking back at the file I modded all I did was change the location lock so instead of letting you go no where it would only let you go into the garage. A simple fix but given how they distributed their code due to the state machine system it required analyzing several hundred lines of code spread out over half a dozen or more files to find where the problem actually was cause as far as renpy was concerned there was no actual error so I couldn't just use the trace log.If it can be fixed, the fix is already in my mod. Feel free to try it out
A little background: The game represents the characters as state machines, and they change states when triggered by triggers that occur while proceeding the story. The game has rollback disabled by default for a reason because those state transitions cannot normally be rolled back. When a saved game is loaded, the sequence of all triggers that occured so far is re-played on all state machines so that, in theory, the current state is reached.
When such a trigger chain is broken, it may be that a trigger is being applied to a state maching that has the wrong state, so that the target state will not be reached and it stays in the current state. As a result, all following triggers run void as well because they assume a further progressed state already.
The mod fixes that in a way that whenever a trigger cannot be applied to a state machine, it does a depth search on all triggers and states to find a path from the current state to the target state of the current trigger, and applies all those triggers before. That way, the current trigger can be applied and the state can correctly progress.
That will work in most cases, except when it is so broken that a certain search depth is reached, in which case it will stop searching to prevent deadlocks. However, I never encountered such a case.
I sworn there was a cheating scene... I must be thinking of another game. I've played way too many of the games from F95Zone (which isn't a flex, actually, I find it kind of saddening), so I must've mixed it up. Kind of whacky though.Not changed. You still have to impregnate Maria. The addition is that when you allow Tony to participate, Maria gets DPed by you two in the repeatable scenes. She's never been happier since.
Try finish other quests first (especially those with teachers or Roxxy).I believe I am stuck, trying to get the book from Dexter. I talked to him and there is nothing in his locker. It looks like usual. View attachment 2109004
talk to him in the afternoon in the basketball yard then look at the locker againI believe I am stuck, trying to get the book from Dexter. I talked to him and there is nothing in his locker. It looks like usual. View attachment 2109004