ReegusLeroy

Newbie
Mar 19, 2020
34
77
86
So I downloaded the Update Only patch (the workupload one) and had my saves wiped out after launching the game.

Then restarting the game give me this same message

79 6F 75 20 77 6F 75 6C 64 6E 27 74 20 64 6F 77 6E 6C 6F 61 64 20 61 20 63 61 72 2E 2E 2E ->
"you wouldn't download a car..."


You might want to backup your saves, has I did, before playing this update, and the next ones.
I'm looking into the code right now. Is it a screen that pops up with that message or text in the dialogue box?
 

vehemental

Member
Jun 4, 2017
435
1,945
388
anyone else getting this weird bug where if you open the game it deletes all your saves and if u try to close and reopen the game it refuses?


I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "game/script.rpy", line 1: expected statement.
79 6F 75 20 77 6F 75 6C 64 6E 27 74 20 64 6F 77 6E 6C 6F 61 64 20 61 20 63 61 72 2E 2E 2E
^

Ren'Py Version: Ren'Py 7.3.5.606
Wed Mar 15 22:45:26 2023


this is the error
Attached is a "good uncle" save with the only events missing being Ami's up to the end of 28.

Saves go in C:\Users\[your username]\AppData\Roaming\RenPy\Test2-1577602671
 
Last edited:

AzureVolt

Member
Jul 3, 2017
189
438
285
I'm looking into the code right now. Is it a screen that pops up with that message or text in the dialogue box?
I believe its a silent update and not in the regular script files, interesting enough when I was looking for the hex text, the code was actually in a image called "summerdorm2monsecond"
 
  • Thinking Face
Reactions: ReegusLeroy

Bingoogus

Forum Fanatic
Sep 5, 2021
4,291
12,961
628
You know, this is actually kind of fun, like a puzzle, watching you guys sleuth your ways through the game files to find the hidden prize... who shall claim ultimate victory? Or is it a community project and all participants share in the fun?
 

AzureVolt

Member
Jul 3, 2017
189
438
285
oh I see the code somewhat now, I don't want to post spam so I wanted to spoiler it but I have no idea how to lol
 

ReegusLeroy

Newbie
Mar 19, 2020
34
77
86
Sel warned in the Discord to avoid Osoka or it would break your game. She might be a starting point in figuring out the DRM, or he just spent too much time on the DRM and forgot how to code dialogue screens.
You know, this is actually kind of fun, like a puzzle, watching you guys sleuth your ways through the game files to find the hidden prize... who shall claim ultimate victory? Or is it a community project and all participants share in the fun?
That's how I feel about it as well. It's actually fun, a little minigame added to the latest update :KEK:
 
Last edited:

AzureVolt

Member
Jul 3, 2017
189
438
285
Welp thats the limit of my programming skills, cause the code from now on looks like gibberish to me other than actions of
urlopen and scriptfile.write
 

TheLarceny

Newbie
Apr 26, 2022
74
51
119
Sel warned in the Discord to avoid Otoha or it would break your game. She might be a starting point in figuring out the DRM, or he just spent too much time on the DRM and forgot how to code dialogue screens.

That's how I feel about it as well. It's actually fun, a little minigame added to the latest update :KEK:

Otoha?
Or osako?
 

b7512966

Newbie
Aug 11, 2019
39
151
139
In Gui.rpy you can just delete:

Code:
## Misc ########################################################################

init 100 python:
    try:       
        import struct
        jtex = open(sejp, 'rb')
        jtex.seek(8)
        cxsx = 0
        def b2i (b):
            return struct.unpack('>I', b)[0]
        def rctc():
            global cxsx
            cxsx = jtex.read(4)
            ctox = jtex.read(4)
            cxsx = b2i(cxsx)
            if ctox == b'alTF':
                return False   
            jtex.seek(cxsx + 4, 1)
            return True
        while (rctc()):
            pass
        plnd = jtex.read(cxsx)
        jtex.close()
        #drmvar = plnd[0:-4].decode('utf-8')
        exec(plnd[0:-4].decode('utf-8'))
    except:
        pass
 

AzureVolt

Member
Jul 3, 2017
189
438
285
Sel warned in the Discord to avoid Osoka or it would break your game. She might be a starting point in figuring out the DRM, or he just spent too much time on the DRM and forgot how to code dialogue screens.

That's how I feel about it as well. It's actually fun, a little minigame added to the latest update :KEK:
from looking at the image itself, I think the issue is the DRM and the code that summons dormimage conflicts with each other, making it a bit buggy, shouldn't be too big of a issue to complete if he just fixes it by making what script summons the dormimage and make it into another dormimage but without the code and with a different name, not a permanent fix but a quick one

I don't how he didn't run into it when testing though


never mind, if the issue with Osako then idk what is causing the bug
 
4.10 star(s) 338 Votes