3.00 star(s) 96 Votes

Nemo56

Forum Fanatic
Jan 7, 2018
5,396
4,410
i just hope that when we finally can get rid of him, we can see him get shoved into a trunk or something. you know make it a little interesting.
I really don't care how, just get the job done :D
In the original game there was the option to sell him as a sex slave (or something like that, they never really explained what happened to him), but that involved a character who most likely won't make it into this game, so let's see what will happen.
 

Nemo56

Forum Fanatic
Jan 7, 2018
5,396
4,410
Where and what's different?
For now? More scenes with Alice, more scenes with Lisa, Olivias story was changed, there will be no WhatsTheNameOfThePotChick and Kira's daughter was announced.
 
Last edited:
  • Haha
Reactions: JanisL

Nemo56

Forum Fanatic
Jan 7, 2018
5,396
4,410
790$ for one camera :KEK: No way you get both dresses before Eric...
BTW the cigarette event is bugged. i can't put them under Alice's pillow.
I have already been told a way how to do it but you don't have to.
That's a new gameplay mechanic. You can get a credit on the web which of course you have to pay back later.

The cigarette event is indeed a bit strange. You have to give her the cigarettes in order to set her up.
 

Dracconic Evolution

Active Member
Feb 28, 2020
733
375
Not sure. How do I get it. Looking at "memories" appears she is on the couch for massage.
When referring to the 17/18 opportunities you will need to see if you have "Control" as that is the only 1 that can't be obtained if you are an enemy of Eric. When talking about the memories you would need to provide a screen shot showing us which ones you do not have as not all can be obtained in 1 playthrough as mentioned previously.
 
  • Like
Reactions: .Black Panther.

snagglepuss

Newbie
Oct 2, 2018
96
16
When referring to the 17/18 opportunities you will need to see if you have "Control" as that is the only 1 that can't be obtained if you are an enemy of Eric. When talking about the memories you would need to provide a screen shot showing us which ones you do not have as not all can be obtained in 1 playthrough as mentioned previously.
Is there one on the couch during normal massage with Alice where he touches her vagina ?
 

Dracconic Evolution

Active Member
Feb 28, 2020
733
375
Is there one on the couch during normal massage with Alice where he touches her vagina ?
In that case you are talking about memories and not the opportunities (which correspond to the 17/18 number you mentioned before). In that memory you need to watch Alice in her room as part of her "Blog" opportunity after giving her a 1 sweet massage on the couch. Then you should be able to go a little further on the couch massages.
 

Pervie-Dan

Member
May 1, 2017
258
426
I have already been told a way how to do it but you don't have to.
That's a new gameplay mechanic. You can get a credit on the web which of course you have to pay back later.

The cigarette event is indeed a bit strange. You have to give her the cigarettes in order to set her up.
The cigarette event does not need Max to have cigarettes himself. He's looking for the cigarettes that Alice already has in her room. That's why you cannot look for cigarettes at 13:00 because at that time she has them since she's smoking outside.

Buying the cigarettes is just a mechanic to make her happy by giving them to her.
 

Nemo56

Forum Fanatic
Jan 7, 2018
5,396
4,410
The cigarette event does not need Max to have cigarettes himself. He's looking for the cigarettes that Alice already has in her room. That's why you cannot look for cigarettes at 13:00 because at that time she has them since she's smoking outside.
Well, I had the impression that as soon as I gave them to her, it was possible to set her up when at the same time before giving them to her it wasn't. I'll give it a try at some point to see if my impression was correct or yours :)
 

AbrahamFroman

Member
Jun 8, 2018
106
574
I made a patch to allow you to change the MC's name from Max to something else.

To use the patch, copy zz_patch.rpy into the \game folder and restart your game.

Enjoy.

1623090512493.png 1623090861847.png

The authors have modified the code so my patch no longer works.
I'll leave it here in case someone else wants to take a stab at it.
For me personally, I'm over it. This is why we can't have nice things.
I blame public schools.

My two cents: Instead of crippling my silly patch, maybe the code monkeys could spend time fixing the problem. I'll hold my breath. {/sarcasm}

Life is short.
 
Last edited:

OnlyFunz

Game Changer
Modder
Donor
Game Developer
Nov 23, 2017
847
5,981
Well, I had the impression that as soon as I gave them to her, it was possible to set her up when at the same time before giving them to her it wasn't. I'll give it a try at some point to see if my impression was correct or yours :)
The cigarette event does not need Max to have cigarettes himself. He's looking for the cigarettes that Alice already has in her room. That's why you cannot look for cigarettes at 13:00 because at that time she has them since she's smoking outside.

Buying the cigarettes is just a mechanic to make her happy by giving them to her.
That is correct.

BBAS-SearchCiga-Code.jpg

While Alice smokes (her plan_name is smoke), hence you cannot look for Cigarette in her room.
The same goes with Searching the Secret Book when she reads it.
 
  • Like
Reactions: .Black Panther.

OnlyFunz

Game Changer
Modder
Donor
Game Developer
Nov 23, 2017
847
5,981
I made a patch to allow you to change the MC's name from Max to something else.

To use the patch, copy zz_patch.rpyc into the \game folder and restart your game.

Enjoy.
I would suggest you to correct the code, as the current code is not going to do any changes to this game.
It maybe a generic format for most games, but this game doesn;t use any variable "mcname" or "player_name"
Moreover, there are 2 variables in your file.

The code in your attached file zz_patch.rpy
Code:
    $ mcname = renpy.input("What is your main character's name?")
    $ mcname = mcname.strip()
    if mcname == "":
        $ player_name="Max"
This is not going to work, but simply popup every time the game loads.

On that Note: I would not recommend using this file until there is some change in code.
 

thegrindisreal

Active Member
Dec 19, 2018
855
1,583
The game literally stopped working. After the loading small screen nothing happens :KEK: Had to remove some save files to make it work again.
 
Last edited:

AbrahamFroman

Member
Jun 8, 2018
106
574
I would suggest you to correct the code, as the current code is not going to do any changes to this game.
It maybe a generic format for most games, but this game doesn;t use any variable "mcname" or "player_name"
Moreover, there are 2 variables in your file.

The code in your attached file zz_patch.rpy
Code:
    $ mcname = renpy.input("What is your main character's name?")
    $ mcname = mcname.strip()
    if mcname == "":
        $ player_name="Max"
This is not going to work, but simply popup every time the game loads.

On that Note: I would not recommend using this file until there is some change in code.
I made this patch for myself and I never entered nothing as a name. It should now work, as advertised.

Now, if you like the name "Max" then just press enter or, better yet, don't use this patch.

Thanks for playing.
 
3.00 star(s) 96 Votes