ashitanojoe

Engaged Member
Oct 20, 2019
2,073
10,310
718
May someone upload the game in a server like GDRIVE, NOPY or uploadhaven, please? MEGA's downloads stop at the middle.

Edit: I could download the file at once in Mega this time.
 
Last edited:

ashitanojoe

Engaged Member
Oct 20, 2019
2,073
10,310
718
The other day I used NOPY to download a file and the speed was 8 MB/s. You could download this game in 5 minutes. Nothing is faster, but I don't know if it's always like that.
 

BeccaBoo

Member
Apr 21, 2018
499
1,491
348
The other day I used NOPY to download a file and the speed was 8 MB/s. You could download this game in 5 minutes. Nothing is faster, but I don't know if it's always like that.
I used Mega with MegaSync and no VPN and downloaded in about 3 minutes, maybe a little less. That is with a download speed of 500mb. NOPY is excellent though as Mega will limit your download to 5GB even with MegaSync and I haven't found a limit in NOPY and their speeds are not far off Mega and can be better in some instances.
 

ashitanojoe

Engaged Member
Oct 20, 2019
2,073
10,310
718
I used Mega with MegaSync and no VPN and downloaded in about 3 minutes, maybe a little less. That is with a download speed of 500mb. NOPY is excellent though as Mega will limit your download to 5GB even with MegaSync and I haven't found a limit in NOPY and their speeds are not far off Mega and can be better in some instances.
MegaSync is really faster than the normal Mega download? I didn't know that.

You should be wrong at the 500 Mb speed. If the game weights 3390 Mb, you would download it in 7 seconds and not 3 minutes. Unless you are refering to 500 Mb per minute and not per seconds.

Thanks for the suggestion.
 
Mar 2, 2019
90
86
89
can't trigger melanie after last photoshoot. Help?

Edit: I triggered her coming to office, but now can't get her to finish the rest of the photoshoot.
 
Last edited:

BeccaBoo

Member
Apr 21, 2018
499
1,491
348
MegaSync is really faster than the normal Mega download? I didn't know that.

You should be wrong at the 500 Mb speed. If the game weights 3390 Mb, you would download it in 7 seconds and not 3 minutes. Unless you are refering to 500 Mb per minute and not per seconds.

Thanks for the suggestion.
As far as I remember without MegaSync you will be limited to a download of 1GB and it can be slower. The download speed is 500MB per second but that is what the advertised speed is from the provider, you will never see that sort of speed in an actual download as they are always throttled back by the downloading sites. If I run a speedtest it shows 510mbs per second from Mega Sync that translated to about 35mb per second (from memory).
 

ray3dave

Well-Known Member
May 12, 2017
1,231
1,202
378
I am really amazed about the amount and quality of content, still even following the walkthrough it seems really overly complicated to get anything done, and I can't imagine getting anywhere at all without the walkthrough. I think this is a big flaw. If you have no idea about the conditions you should meet, the game does not tell enough, and in general I would prefer to play without a walkthrough. Just as an example, the game asks me to make Monica seduce Ralph, and luckily enough I get into his room while cleaning (again...) BUT as she wears no undies she refuses to do something. The walkthrough says "To activate one of those scenes Monica has to wear specific underwear: Julia’s panties, Betty’s panties, or no panties." Come on!

I never got Monica to jail before. HOW to? The walkthrough says "If decided to come to , ..." - well I would love to, but when and how? It is tiring. As much as I love the content to be revealed I am really tired of searching for ways to get ahead. All in all the various story lines seem to be greatly intertwined, but if you don't happen to know the solution it is not working well. I am not happy how the game does not guide you what to do.
 
  • Like
Reactions: mikie

yankeeInKy

Engaged Member
Mar 1, 2020
2,006
6,734
678
More signatures/
View attachment 626225 View attachment 626226 View attachment 626227
View attachment 626490

Code:
https://attachments.f95zone.to/2020/04/640170_Fashion_Business3.gif
https://attachments.f95zone.to/2020/04/640171_Fashion_Business4.gif
https://attachments.f95zone.to/2020/04/640172_Fashion_Business5.gif
https://attachments.f95zone.to/2020/04/640435_Fashion_Business_7.gif

View attachment 626230
Code:
https://attachments.f95zone.to/2020/04/640175_Fashion_Business6.gif
OMG!!! Ty so much Lady, you rock!!! that looks great :D
 

Allamante

Member
Apr 9, 2019
477
862
280
Nice update but is there a way to unlock all naked casting options with Biff as it is a lot of grinding otherwise (e.g. sitting on his laps and more)? Thanks. :love:
 

Sakrilas

Just Another Member
Game Developer
Oct 26, 2017
363
2,664
485
If anyone is like me and sometimes just want to watch the scenes as opposed to progressing through the game normally, here's a quick tutorial on how to do that. (very basic programming knowledge is needed for some scenes)

As part of this tutorial, I'll also guide step by step on how I got the scene from the image below to play (it will be in teal color)

mela.jpg

  1. Look in game/images/Slides for the image you want to read the story behind. (For example: img_17256.jpg)
  2. Find what quest file references that image
    1. I like to use the terminal for that, but realize there are 1001 ways to search for a text within files, do it in whatever way you prefer, if you don't know any way, here's how I do it:
    2. Open the terminal at the game/Quests folder
    3. grep -r <img number> . (For the image from the example I would type: "grep -r 17256 .")
    4. this grep should return a list of all files that reference that image. Use whatever text editor you prefer to open the file. (For the image from the example that would be "EP2_12/ep212_dialogues6_melanie_punishment.rpy"
  3. At this point you have the Quest file for the quest that references the image you care about, find the line that references that image
  4. From that line, start going up in the code base until you see a label definition. (For the image from the example, the image is referenced on line 46, and the label is named on line 20. Line 20 reads as follows: "label ep212_dialogues6_melanie_punishment_1:" )
  5. Start the game and load a save
  6. In the game, open the console (shift + o) and type "jump <label_name>" (For the image from the example, that would be "jump ep212_dialogues6_melanie_punishment_1"

Enjoy the scene!

mela2.jpg

Important points to keep in mind:
1) A lot of scenes relies on predefined variables, if the scene crash, look to see if you're missing specific variables, you can set any variable at any time by opening the consle (shift + o) and typing $<variable_name>=<value.
If you're getting these crashes, take a quick glance at the script of the scene, you might find some dependencies that that need to be addressed before jumping to the label (that's where some programming knowledge is needed)
A very good way to debug is to look at the "call stack" from the error report, the important information is usually at the bottom part.

2) I strongly recommend NOT saving games after doing these wacky scene jumps, you are bound to introduce bugs to the game.

PS: I'm a huge fan of the game, and I've been having a lot of fun playing it. I've been supporting the dev on Patreon for a long time now. I hope nobody will see this post as me dismissing the gameplay, it's just that sometimes I really just want to read specific parts of the story.
 
Last edited:

gooner69

Newbie
Feb 13, 2018
73
50
206
Im stuck at the start of episode 2, everything seems locked till this "charity event" yet after talking to biff the 1st time she now refuses to talk to him again so i can progress the story im now at 90 corruption already and running round in circles >< . Walkthrough says "Visit in the office storyline.
The next day, will call and say is waiting for her." But after visiting Biff fred dont call hence the game will not move on...
 
Last edited:
3.50 star(s) 241 Votes