U

User_10739

Guest
Guest
Kind of tired of being told that all I have to do to add the patch is download it into the GAME file, when every time I do it pops up an ARCHIVE NAME and PARAMETERS window. Asked before and my post was transferred to the mod section and treated like I was trying to mod the game. All I want to do is add the patch and get on with the game. Someone, anyone, have any idea what I am doing wrong?
Dude, I really am not sure what you are trying to do...
Simply enough you have the Game folder sb - DreamsOfDesireEP11-ELITE-1.0.0-pc, inside that folder, there are 3 subfolders,
game/
lib/
renpy/

Extract the zz_kill.rpy file into the "game" subdirectory and you are good to go.
Make sure to extract it and not just placing the .zip file.
 
Jan 28, 2018
238
331
Does anyone know the "future impacts" of certain choices? For example, what is the impact of not getting caught by mom on day 1, other than not being able to get the revealing outfit option? Another example: what is the "future impact" of who you choose to visit on night 5? If anyone knows these things and more, please @ me and use a spoiler, or DM me on here. Thank you all very much! And Dr. Sin. if you happen to see this, love the game! Been playing since the beginning! ^_^

Thank you all in advance!

EDIT: Additionally, when checking the variables, after complimenting mom's breakfast on day 2, mom_trust does not go to 1 or show up at all. Is this a bug?
 
Last edited:

ninjasmurf73

Newbie
Nov 18, 2017
70
64
help her choose the dresses
I chose to visit her when the 3 options appeared to me {episode 8}, I entered the dream and the double of her appeared
I also chose her in the last episode and I still have a bad ending
I followed the instructions of the tutorial so as not to insult her, confronting her and choosing the route All Out Lying on him and I still have a bad end
Am I the only one who happens?
Not sure if i followed the walkthru exact but she died in my game also. I was like" what just happened?" and sat there in silence for a few minutes. You know it's a good game if it evokes that type of response but still not happy about it
 

bas

retired
Donor
Respected User
Former Staff
May 6, 2017
3,988
30,633
Kind of tired of being told that all I have to do to add the patch is download it into the GAME file, when every time I do it pops up an ARCHIVE NAME and PARAMETERS window. Asked before and my post was transferred to the mod section and treated like I was trying to mod the game. All I want to do is add the patch and get on with the game. Someone, anyone, have any idea what I am doing wrong?
Make sure to extract it and not just placing the .zip file.
@RobertII - Thinking Kasey hit this one on the nose and last line if his post is causing your problem. After you download the .zip file of the game, are you extracting all the files to your hard drive and then run the game, OR are you just running the game by double-clicking on the zip file and then the clicking on the game in there?

Betting you're doing the second one when you need to be doing the first. If that's the case, extract all the files from the zip file then apply patch to the files you extracted (not the zip file). You won't get weird archive messages.
 
Last edited:

New Kid

Member
Apr 2, 2018
283
295
Yes, get 6+ trust points with her and you should be good to go. Check the walkthrough in the OP if you need more details.
 

Catwashere

Futa lover!
Donor
Jan 28, 2018
2,221
2,412
People please before asking a question at least try searching for it here look at this say i want to know how to save Tracy i do this type save Tracy and click search this thread only. You do the same thing for whatever game you are playing just go to that games thread and ask your question so Man of the House i had a hard time getting a perfect score with Ashley's date i would type in the search bar Ashley date or perfect date.

PS i just did it i searched save Tracy and the first post that i saw was from and it has the answer to that question hope you don't mind i tagged you! xD upload_2018-4-5_3-14-19.png
 
Last edited:

ShocLite12

Member
Oct 24, 2017
429
324
I am not sure if this has already been pointed out by someone else, but there appears to be an issue on Day Six in regards to the massage for the mom. I chose to be understanding on Day Three, but I get the boob massage instead of the ass massage.
 

Trapezio

Engaged Member
Sep 28, 2017
2,226
3,229
I am not sure if this has already been pointed out by someone else, but there appears to be an issue on Day Six in regards to the massage for the mom. I chose to be understanding on Day Three, but I get the boob massage instead of the ass massage.
You chose the alternate outfit. You have to choose the regular one. Check the walkthrough in the OP.
 
  • Like
Reactions: bas

RobertII

Newbie
Feb 23, 2018
19
12
@RobertII - Thinking Kasey hit this one on the nose and last line if his post is causing your problem. After you download the .zip file of the game, are you extracting all the files to your hard drive and then run the game, OR are you just running the game by double-clicking on the zip file and then the clicking on the game in there?

Betting you're doing the second one when you need to be doing the first. If that's the case, extract all the files from the zip file then apply patch to the files you extracted (not the zip file). You won't get weird archive messages.
You are right, that is what I was doing. Was trying to just keep in on the flash drive. Guess I will do as you say and see if after extracting, it will fit back on the drive. Thanks a lot.
 

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,703
So I added most of the misspelled words (didn't really touch many grammar issues though) from chapters 1-10 and both extras' scripts to @bossapplesauce 's patch. I speed ran through the game to see if anything crashed and it didn't.

I also made a small one that affects the choice of dress you make for the mom's meeting

You don't have permission to view the spoiler content. Log in or register now.

sorry If I'm stepping on any toes, I did it mostly for myself and figured I'd put it out there if anyone else wants it.
Very cool :) I lol'd when I saw that you alphabetized the if's.



Use this one - it's way cooler than mine :)
There's a bug in the ending cheat,
label ep11_end_cheat:

Code:
    if tracy_trust < 6:
has no else: clause, so if tracy_trust >= 6, it drops straight to the main menu.


It needs this:
Code:
    else:
            jump ep11_end_orig
 
  • Like
Reactions: if95 and bas
H

HooDat

Guest
Guest
There's a bug in the ending cheat,
label ep11_end_cheat:

Code:
    if tracy_trust < 6:
has no else: clause, so if tracy_trust >= 6, it drops straight to the main menu.


It needs this:
Code:
    else:
            jump ep11_end_orig
I removed the old file and uploaded a new one with the fix to that same post, thanks.
 
  • Like
Reactions: bas

bas

retired
Donor
Respected User
Former Staff
May 6, 2017
3,988
30,633
There's a bug in the ending cheat,
label ep11_end_cheat:

Code:
    if tracy_trust < 6:
has no else: clause, so if tracy_trust >= 6, it drops straight to the main menu.


It needs this:
Code:
    else:
            jump ep11_end_orig
Thanks - more than a little pissed at myself that I missed that.

any mom scenes in new ep?
Yes, it's the mom mother-lode :)
 
4.20 star(s) 295 Votes