VN Ren'Py Dog Days of Summer [v0.5.1] [BlackWeb Games]

4.10 star(s) 44 Votes

BlackWebGames

Dog Days of Summer developer
Game Developer
Jan 11, 2020
902
3,138
381
Edit: Forgot a step now added
So the choices you need to make are as follows:

help Evaline Cheat
don't invite Desiree to stay the night
go to party without inviting your mom
tell Evaline that you are going to a party
tell Harper to fuck off or bluff your way out
invite Evaline to stay at your place
turn her down because you want something serious

That should make it when you go shopping with her you get the choice to say that you are okay with having an open relationship with her.
 
Last edited:

SecretDesire

Active Member
May 15, 2019
772
1,016
331
So the choices you need to make are as follows:

help Evaline Cheat
don't invite Desiree to stay the night
tell Evaline that you are going to a party
tell Harper to fuck off or bluff your way out
invite Evaline to stay at your place
turn her down because you want something serious

That should make it when you go shopping with her you get the choice to say that you are okay with having an open relationship with her.
Only open relationship or we can get some romance kinda thing ? sorry for bothering you bdw.

I am in a place to can't play right now to try and see for my self so again sorry for asking soo many question..
 

BlackWebGames

Dog Days of Summer developer
Game Developer
Jan 11, 2020
902
3,138
381
Only open relationship or we can get some romance kinda thing ? sorry for bothering you bdw.

I am in a place to can't play right now to try and see for my self so again sorry for asking soo many question..
At this time that is the only option. If you stick to your guns however who knows what might happen in future updates. :sneaky:
 

SecretDesire

Active Member
May 15, 2019
772
1,016
331
At this time that is the only option. If you stick to your guns however who knows what might happen in future updates. :sneaky:
i realy don't like open relationship kinda thing (i am a jealous type of person what is mine , mine) but i realy like Desiree more tho so it's okey for me i can't pursue anything with Eva till we can have her only for ourselves :D
Desiree shop scene is enough for me she say we are friends but i see she got feelings like MC too so that's okey for me :D
 
  • Like
Reactions: Default123x

SecretDesire

Active Member
May 15, 2019
772
1,016
331
Mom don't want Vivian go party because she exactly know what happened that kind of parties and that formula chick and mother have a history ... maybe i am totally wrong.. who knows :D
 
  • Like
Reactions: afterlights

MrLakes1579

Member
Mar 1, 2019
207
285
146
Mom don't want Vivian go party because she exactly know what happened that kind of parties and that formula chick and mother have a history ... maybe i am totally wrong.. who knows :D
depending on how you make your choices she says as much explicitly. Also Tara tells you more about the racer.
 
  • Like
Reactions: BlackWebGames

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
12,725
20,886
1,026
Are you by change going off the compressed version?
I did a quick grep, so it's not impossible that I misread some lines numbers, sorry.



Because looking at the code they don't line up with any switches. I hunted around the area and sometimes was able to find it.
Could you by chance give me the the switch name so I can go looking for it that way?
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.

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


Still I'm here, you would really benefit from using the statement for part of the code that is common to many variations, like it's the case for Tara scene in this update.


By example you could have the menu defined like this :
You don't have permission to view the spoiler content. Log in or register now.
Then instead of copying the whole menu each time, you just do :
You don't have permission to view the spoiler content. Log in or register now.

Well, like in fact you copy/pasted more than the menu, the same apply third times. So, I'll also say that you would benefit from call for way more than just the menu. In this particular case, it's around 1500 lines that are presents third time in the game, when it could have been only once.


I know that it's something that can feel uneasy, especially when you don't have an initial knowledge about code writing. But it's not really difficult to understand it, and once you've done it, it really easy all the writing process, especially since it make the whole code more understandable.

Take this short stupid demonstration by example :
You don't have permission to view the spoiler content. Log in or register now.

By deporting the variations into a called label, it make it easier to see the whole script. It also make it easier to understand where you are in it, because the branching condition are always near to you. And I as said above, but not really depicted in my example, you also need only one copy of the code common to more than one path.
 

Sorrow85

Engaged Member
Feb 17, 2020
2,569
19,137
675
So 0.35 full requires a new game?
Fortunately, in renpy(+VN) games it's not a big deal ;)
 

Glooskabe

Well-Known Member
Jan 4, 2020
1,693
2,307
461
I did a quick grep, so it's not impossible that I misread some lines numbers, sorry.





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

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


Still I'm here, you would really benefit from using the statement for part of the code that is common to many variations, like it's the case for Tara scene in this update.


By example you could have the menu defined like this :
You don't have permission to view the spoiler content. Log in or register now.
Then instead of copying the whole menu each time, you just do :
You don't have permission to view the spoiler content. Log in or register now.

Well, like in fact you copy/pasted more than the menu, the same apply third times. So, I'll also say that you would benefit from call for way more than just the menu. In this particular case, it's around 1500 lines that are presents third time in the game, when it could have been only once.


I know that it's something that can feel uneasy, especially when you don't have an initial knowledge about code writing. But it's not really difficult to understand it, and once you've done it, it really easy all the writing process, especially since it make the whole code more understandable.

Take this short stupid demonstration by example :
You don't have permission to view the spoiler content. Log in or register now.

By deporting the variations into a called label, it make it easier to see the whole script. It also make it easier to understand where you are in it, because the branching condition are always near to you. And I as said above, but not really depicted in my example, you also need only one copy of the code common to more than one path.
This is probably the single most useful piece of advice for Devs who are writing branching stories (and those poor souls who are working with their scripts, like editors, translators or Walkthrough authors!)
 
  • Like
Reactions: bcool

Squark ⚧❤️

Conversation Conqueror
Jun 16, 2017
7,343
8,125
815
I love what's here currently.
Please don't take offence but there's just so many small spelling mistakes I felt the need as someone whose first love was reading, to say something.
For example; when Vivian peeks on Des in the shower, the in-game text calls her "Bibian" at one point.
One more; I can't exactly remember where it was but at some point during Des' dialogue the game refers to her as Evaline.

There's more, like the occasional extra e in Desirée's name (comes as Desireee once - but only once) and the typo made when typing "masturbate". I've seen it so many times but it always gets me to shake my head when I see "masterbate".
 
4.10 star(s) 44 Votes