2658340058

New Member
Sep 16, 2022
7
3
On the site "Lewd Zone" you can download all versions of this game: maybe you can finally found this scene now.
The 0.8.1PC link there seems to be invalid (or I cannot access it). Based on the link, the version there should be 0.8.1OB, but I found this version on another website yesterday - the Patreon version has a different suffix;The scene you are looking for happens to be in the last one
C:\Users\*username*\AppData\Roaming\RenPy\persistent ;
Overwriting with my files seems to unlock the CG of the "old version" of the game (the exclusive CG of the Patreon version still needs to be opened by the Patreon version of the game). It( at least ) works in both 0.6.3AO and 0.8.1OB and 0.7.2PA(enter Patreon code)
It is worth mentioning that New Version 0.8.2 oc (0.1 Remastered) cannot open the Gallery on my computer, and I am not sure if this file is related to this phenomenon (There seems to be no problem with the FINAL version)
The patch from fans in the game has expired in MEGA. I don't know if anyone has it
ForbiddenFruit-0.7.2(PA) Patreon code
037255 - $5
533563 - $10
157322 - $20

1711640741100.png 1711639330754.jpeg
[/QUOTE] View attachment persistent.zip
 
Last edited:

Valronn

Active Member
Apr 13, 2018
980
320
Hey everyone, i like the art and animations in the gallery of this game, but it is so confusing and even the gallery was broken!! So heres a mod i made.
Went through all gallery scenes i think. Hunted down the code and stuff. Would get this be just a patch but i had to modfy a lot of different areas, so we doing a modded version instead, the game itself is untested. Heres what this modded version changes exactly:​

  • The gallery is working perfectly
  • Removed that annoying popup talking about a new version
  • Made so the splashscreen is skippable by just clicking.
  • Added additional disclaimer before to make sure people know this is just a modded version with fixes!


Link to the modded game, Please someone upload it somewhere because i need the storage for my own games and secret projects ^-^ Enjoy!

ANDROID
PC & LINUX

MAC
Hi there, i tried the android link and when it came to install it said invalid package, any easy fix i can do?
Just trying the pixledrain link to see if that works.
 

2658340058

New Member
Sep 16, 2022
7
3

If you are 5+ patron there you can find the link and code for the whole content of 0.8.1
However, watching this content now requires a payment of $50, which feels a bit... unreasonable,may I ask if it is possible to change back to the original settings?
and the patch from fans in the game has expired in MEGA.
 
Last edited:

2658340058

New Member
Sep 16, 2022
7
3
So is there a way to actually watch this scene or not?
Considering that I am not a super hacker... after all, if I can do it, I don't have to hope that the game official can modify it back to five dollars(But I almost have to pay the remaining $45, and some "your payment was rejected" prevented me from doing so
 
  • Like
Reactions: Za_Warudo

TheWarxh

New Member
Apr 3, 2021
13
2
I'm using the modded version and have found a bug here, I'll leave the traceback in case anyone knows how to solve it cz no matter what I do, it crashes
1711959588833.png
Edit: I have other saves before this one but as soon as I get to that point it crashes, is after the girl chooses to use potions and ends up getting fucked by the white lion, after that scene, whatever you do crashes the game. I found that it crashes too as the unicorn scene ends
 
  • Like
Reactions: Alexios8118

RSnark

New Member
Aug 10, 2017
7
2
Hi folks, I was running into the same crashing issue on Episode 5 as per a couple of the previous posts
(https://f95zone.to/threads/forbidden-fruit-v1-0-final-lustration-team.27200/post-13005045 and https://f95zone.to/threads/forbidden-fruit-v1-0-final-lustration-team.27200/post-13357863)

TypeError: 'int' object does not support item assignment

It seemed to be progress-blocking, so I tried my hand at "fixing" (as much as I could) the script files to resolve this.
Here's an archive with the modified scripts to prevent the Episode 5 crashes from happening.
Download from the post attachment or from

I could play onward to complete Episode 5 without it crashing anymore, up to the next episode start (Halloween). It solves crashing when trying to view the scenes on Gallery too. I haven't played until the end of the game to be 110% sure there are no side effects, but logically it doesn't look to impact any of the game's code outside Episode 5.

Only tested with the 'Z Patch' modded version by Zawkian_Puppy (https://f95zone.to/threads/forbidden-fruit-v1-0-final-lustration-team.27200/post-12168183)

Install by extracting the 'core' folder on the archive into your /game directory.
It would also work if you simply drop the .rpyc files anywhere within /game, Ren'py seems to read them anywhere & everywhere.
(There's a ReadMe.text in the archive with further details.)

Unfortunately, this is a quick-and-easy amateur fix (I have barely any Python experience). There are two caveats/drawbacks to this fix:

1. Affected scenes' dialogue are now hard-set in Russian language -
because the script files had Russian dialogue and I hadn't figured how the game was applying the translations (one could copy over the lines from the English translation library files I suppose, but there were way too many lines)
2. You have to load back to an earlier point in the game if your save file had already been "broken" - basically anytime before you've seen any of the 3 affected scenes listed below (beginning of Episode 5 definitely works). Alas this fix does not include a retroactive fix for. If you want to know if your save is affected, you can use any Ren'py save file reader and look for "ep5_end_vars" variable. If it's a single item (with value of "1") instead of 7 of them, it's been broken. Of course, you could force edit the values as a fix if you have a good idea of what & how to set it.

The affected scenes are:
  • Leo spying on Victoria and Leya at the Lake - ep5_leo_lake.rpyc
  • Maya "getting sperm" from Alf at the Lake (if agreed to help the dungeon spider queen earlier) - ep5_maya_alf_sperm.rpyc
  • Maya with the Unicorn-guy at the Lake (time travelled to the past) - ep5_maya_unicorn.rpyc
You could technically selectively add the individual scenes' modified .rpyc files AFTER you've already read through the scenes in English - that's what I'd done personally.

Deep technical details in case anyone would like to try their own hand on things in this game or others:
1. I had to extract scripts.rpa file to get access to the .rpyc scripts within
2. Then, I'd used unrpyc to quickly convert all of them into human readable .rpy un-compiled format (I think .rpyc might have been able to read directly from .rpa without having to extract
3. From the traceback crash log, I know which script exactly and which line of it was causing the crash.
4. Looking at the exact problematic line, I could see the way the ep5_end_vars variable was being set was causing issues.
5. Using Visual Studio Code editor, I'd opened the whole game folder so I could do a mass file search for the text "ep5_end_vars" so I could investigate what this variable was actually intended to be used.
6. From there, I figured it was supposed to be an array of 7 booleans starting as [0,0,0,0,0,0], but the script erroneously sets it as an int value (ep5_end_vars = 1) at three different points of the script (the 3 scenes), hence the int-type related exception.
7. There are other instances of script where they "correctly" work with ep5_end_vars as an array (e.g. ep5_end_vars[5] = 1). Basically, after any of the problem scenes, the variable had turned into an int and will crash the next instance it's used like an array (which looks to include anytime you end a day at night too).
8. I'd simply just modified the int-style instances to work with an array so you ultimately can get a complete [1,1,1,1,1,1] which the game's script references to determine if you've seen everything on Episode 5 so it can trigger the next episode beginning.
 
Last edited:
  • Like
Reactions: netherion

RSnark

New Member
Aug 10, 2017
7
2
pls help me,game crash when i play Maya event,ep.5..
I'm using the modded version and have found a bug here, I'll leave the traceback in case anyone knows how to solve it cz no matter what I do, it crashes
I'm not sure if quoting will notify you guys, or if you're still at all interested in this game, but here's a quick fix for the crashes you guys were having that I'd also had to deal with. See the post right above
 
2.40 star(s) 43 Votes