f96zonetrooper

Engaged Member
Dec 21, 2018
2,917
2,795
350
You mean I need to use the Ren'Py 7 sdk instead of 8?

I'm not using unren. I'm downloading the windows archive and loading it through the Ren'Py sdk on a mac. Works for 99% of games
At first I saw only the error message you posted.

Since the archive only contains "game\scripts\Free Roams\Mall\Free Roam Mall 1.rpyc", I thought you used unren to decompile the rpyc-files.

Your error :
"File "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy", line 83: unexpected EOF while parsing"

I got a similar error when accidentally running the game from the folder where I unpacked and decompiled everything with unren which then forced renpy to compile all the rpy-files again :
Code:
File "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy", line 84: invalid syntax
            show screen GUI
                ^
So it seems that your tool stopped decompiling the file when it ran into that invalid syntax

Code:
    label FreeRoam_Mall_1.Photo:
        $ current_label = "FreeRoam_Mall_1.Photo"
        $ current_background = "images/Free Roams/Mall/bg Mall photo.webp"\
        show screen GUI
        call screen FreeRoam_Mall_1_Photo
        screen FreeRoam_Mall_1_Photo:
I think it is the unexpected character '\' at the end of line 83 :
$ current_background = "images/Free Roams/Mall/bg Mall photo.webp"\

I removed the character from my rpy-file and the compile-error vanished.

Try the attached file at the correct path "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy" :
 
Last edited:
  • Like
Reactions: Penfold Mole

godscoper

Active Member
Jul 16, 2023
525
1,236
276
The game itself is not bad. But the updates are always too short. And after 4 1/2 years there's hardly any plot... Everyone shuts up... Nobody tells you what happened. What's that? How long is this supposed to go on?

And the protagonist is such a HUGE pussy... He constantly lets his mother put him down... I could puke... In a jet... to the moon.
I demand more balls for the protagonist, more sex, more story... Something that makes sense.

I remember playing the game 2 years ago and I was just as smart at the end as I am now after v0.100. I still don't know what happened. How can you get so stuck on the spot.
Huge potential wasted.
see you in 5 years when we know the plot, since each update is only 45 seconds
 

Penfold Mole

Engaged Member
Respected User
May 22, 2017
3,449
9,046
748
At first I saw only the error message you posted.

Since the archive only contains "game\scripts\Free Roams\Mall\Free Roam Mall 1.rpyc", I thought you used unren to decompile the rpyc-files.

Your error :
"File "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy", line 83: unexpected EOF while parsing"

I got a similar error when accidentally running the game from the folder where I unpacked and decompiled everything with unren which then forced renpy to compile all the rpy-files again :
Code:
File "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy", line 84: invalid syntax
            show screen GUI
                ^
So it seems that your tool stopped decompiling the file when it ran into that invalid syntax

Code:
    label FreeRoam_Mall_1.Photo:
        $ current_label = "FreeRoam_Mall_1.Photo"
        $ current_background = "images/Free Roams/Mall/bg Mall photo.webp"\
        show screen GUI
        call screen FreeRoam_Mall_1_Photo
        screen FreeRoam_Mall_1_Photo:
I think it is the unexpected character '\' at the end of line 83 :
$ current_background = "images/Free Roams/Mall/bg Mall photo.webp"\

I removed the character from my rpy-file and the compile-error vanished.

Try the attached file at the correct path "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy" :
Yes, that little bugger has been happening for a couple of years at least now. Each time you try to decompile this game, that reverse slash appears at that line. Each time you have to delete it and then it works.
How it gets there is unknown. Could be a rare unrpyc bug that creates it...
 
  • Like
Reactions: f96zonetrooper

lis301

Newbie
Sep 19, 2019
23
36
108
Usually developers try to build up the passion, and these are trying their best to slow it down. I wonder how much more boring the next update will be :) Every update is now just an extra scene with no story
 

Xarvi

Member
Jul 14, 2017
131
149
125
Is there a way to open the patch.rpyc and just add a few more lines to change some more text? I still get referred as "your friends son" etc. I have 0 programming experience but I feel like it should just be copying some already existing lines in the patch and changing the text?
 

wizardcock

Well-Known Member
Feb 19, 2021
1,378
3,895
387
In this game, I always go to "settings" => "change relationships", and put in sisters and mom again.
 

Kwalijksaki

New Member
Oct 2, 2024
6
1
28
Is there a way to open the patch.rpyc and just add a few more lines to change some more text? I still get referred as "your friends son" etc. I have 0 programming experience but I feel like it should just be copying some already existing lines in the patch and changing the text?
Use 0x52_URM so you can change names.
 

Penfold Mole

Engaged Member
Respected User
May 22, 2017
3,449
9,046
748
Is there a way to open the patch.rpyc and just add a few more lines to change some more text? I still get referred as "your friends son" etc. I have 0 programming experience but I feel like it should just be copying some already existing lines in the patch and changing the text?
My patch still works, "friend's son" is a special case that it can handle properly. And mine isn't compiled, so you can look at the code and how it works. Even change it if you know anything about regex and what you're doing.

https://f95zone.to/threads/amnesia-v0-98a-extended-super-alex.44511/post-5270343

Either that or just decompile that patch.rpyc you already have and make your own changes. There's Unren in the tools section of the forum.
 
Last edited:

TomUK

Engaged Member
Sep 28, 2021
3,374
2,521
407
Is there a way to open the patch.rpyc and just add a few more lines to change some more text? I still get referred as "your friends son" etc. I have 0 programming experience but I feel like it should just be copying some already existing lines in the patch and changing the text?
Yeah, there are few incidents like that, I think it's meant to or should be 'your father's son', there's also a couple of times he gets referred to as a 'sister' instead of brother, not forgetting all the times people outside the family call Alex 'mom' or whatever your choice of name is for her.
 

GeorgeMarty

Member
Jul 31, 2017
210
128
245
At first I saw only the error message you posted.

Since the archive only contains "game\scripts\Free Roams\Mall\Free Roam Mall 1.rpyc", I thought you used unren to decompile the rpyc-files.

Your error :
"File "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy", line 83: unexpected EOF while parsing"

I got a similar error when accidentally running the game from the folder where I unpacked and decompiled everything with unren which then forced renpy to compile all the rpy-files again :
Code:
File "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy", line 84: invalid syntax
            show screen GUI
                ^
So it seems that your tool stopped decompiling the file when it ran into that invalid syntax

Code:
    label FreeRoam_Mall_1.Photo:
        $ current_label = "FreeRoam_Mall_1.Photo"
        $ current_background = "images/Free Roams/Mall/bg Mall photo.webp"\
        show screen GUI
        call screen FreeRoam_Mall_1_Photo
        screen FreeRoam_Mall_1_Photo:
I think it is the unexpected character '\' at the end of line 83 :
$ current_background = "images/Free Roams/Mall/bg Mall photo.webp"\

I removed the character from my rpy-file and the compile-error vanished.

Try the attached file at the correct path "game/scripts/Free Roams/Mall/Free Roam Mall 1.rpy" :
I appreciate the time you've taken to help with this. Unfortunately, that path isn't accessible in the windows archive. The script directory at that location is just scripts.rpa.
 

f96zonetrooper

Engaged Member
Dec 21, 2018
2,917
2,795
350
I appreciate the time you've taken to help with this. Unfortunately, that path isn't accessible in the windows archive. The script directory at that location is just scripts.rpa.
Did you try to manually add the path by creating the folders and place the rpy-file there?
When I do this, Ren'py ignores the respective rpyc-file in scripts.rpa and instead compiles a new rpyc-file from the new rpy-file.
 

Xarvi

Member
Jul 14, 2017
131
149
125
My patch still works, "friends son" is a special case that it can handle properly. And mine isn't compiled, so you can look at the code and how it works. Even change it if you know anything about regex and what you're doing.

https://f95zone.to/threads/amnesia-v0-98a-extended-super-alex.44511/post-5270343

Either that or just decompile that patch.rpyc you already have and make your own changes. There's Unren in the tools section of the forum.
I see, so the problem is that he used the (') in the text "friend's son" and thus the patch can't deal with the ( ' )?
My patch still works, "friends son" is a special case that it can handle properly. And mine isn't compiled, so you can look at the code and how it works. Even change it if you know anything about regex and what you're doing.

https://f95zone.to/threads/amnesia-v0-98a-extended-super-alex.44511/post-5270343

Either that or just decompile that patch.rpyc you already have and make your own changes. There's Unren in the tools section of the forum.
I think I fixed it if you want to update the line:

t = t.replace('friend\'s son', 'son')
t = t.replace('friend\'s family', 'family')
The \ makes it treat " ' " as text
added:

under "do not replace"
'And by the way, Alexandra...',



1728156532834.png
 
Last edited:

TomUK

Engaged Member
Sep 28, 2021
3,374
2,521
407
So has there been a fix to the Kate quest problem when nothing shows up on the info 'pad' to tell you what to do, just get the 'Thursday Morning' instruction but when you look in the journal it's blank and you need to continue this for Kate's story to carry on with Elena's story.
 

sabo93

Newbie
Mar 1, 2018
18
51
200
after installing the game when i i try to open the game nothing happens it doesnt work im on windows 11 first time it happen to me older version of the game like the v099 open and work fine.. i try all the win pc link download
 
3.40 star(s) 242 Votes