Night Hacker

Forum Fanatic
Jul 3, 2021
4,374
21,569
Edit: In the name of keeping things on topic, what do you like about Nadia? Usually, when people come here, they automatically flock to Bella or Nami. I think this is the first time I've seen someone with a Nadia profile pic since I came hereღ
I'm ignoring the other topic, already put them on ignore so I don't see their posts about it again. Rude or not, I am a programmer, programmed in machine language, C (my favourite), C++, Python etc... etc... etc... when you have explained this over and over and over again, and still get the same ignorant responses (and I mean "ignorant" not to be rude but as explaining that the person who responded is clueless about the topic), than yeah, I get annoyed. But... no fear, I'll add such people to my blocked list on here and not have to endure their posts again. :) (plus this was probably bad timing as I was already in annoyed mood from another, unrelated incident today)

Anyhow... NADIA... love her. She's cute, quirky, inoffensive, doesn't seem to like being rude to anyone (unlike me I guess, LOL) and that Banana obsession is just well written and makes me chuckle every time. I don't like the whole "tough woman" act I see out of Bella. Victoria is nice, but she's a little too sweet... might give you diabetes. Mila is one I really like as well as Nami. I think my order of preference is probably Nadia, then Nami then Mila.

I actually used to play fantasy games when I was younger as well, D&D with a group. We would sit around have a few beer and play it and we had a lot of fun, lots of laughs, so I understand that aspect of Nadia as well.

Anyhow, yeah... love Nadia... dislike ignorance but... I'll make a greater effort to just ignore annoying conversations in the future. Let someone else "help" people. :)
 

hahequ

Member
Apr 17, 2022
202
495
I'm ignoring the other topic, already put them on ignore so I don't see their posts about it again. Rude or not, I am a programmer, programmed in machine language, C (my favourite), C++, Python etc... etc... etc... when you have explained this over and over and over again, and still get the same ignorant responses (and I mean "ignorant" not to be rude but as explaining that the person who responded is clueless about the topic), than yeah, I get annoyed. But... no fear, I'll add such people to my blocked list on here and not have to endure their posts again. :) (plus this was probably bad timing as I was already in annoyed mood from another, unrelated incident today)

Anyhow... NADIA... love her. She's cute, quirky, inoffensive, doesn't seem to like being rude to anyone (unlike me I guess, LOL) and that Banana obsession is just well written and makes me chuckle every time. I don't like the whole "tough woman" act I see out of Bella. Victoria is nice, but she's a little too sweet... might give you diabetes. Mila is one I really like as well as Nami. I think my order of preference is probably Nadia, then Nami then Mila.

I actually used to play fantasy games when I was younger as well, D&D with a group. We would sit around have a few beer and play it and we had a lot of fun, lots of laughs, so I understand that aspect of Nadia as well.

Anyhow, yeah... love Nadia... dislike ignorance but... I'll make a greater effort to just ignore annoying conversations in the future. Let someone else "help" people. :)
Im sure once Nadia gets her full on chapter or something, the Nadia nation will rise above any others
Banana meme will be on top
 

_Darkmage_

Active Member
Dec 6, 2019
712
798
What's with all these guys with 'lab' in their name. You have LewdLab, VileLab, OceanLab - let me know if I missed any. As far as I know, you don't need an actual lab for game development. Are they cooking meth on the side or something?
 
Last edited:
  • Haha
Reactions: Kokodeska

Night Hacker

Forum Fanatic
Jul 3, 2021
4,374
21,569
What's with all these guys with 'lab' in their name. You have LewdLab, VileLab, OceanLab - let me know if I missed any. As far as I know, you don't need an actual lab for game development. Are they cooking meth on the side or something?
Hmmm... now I have to come up with a name with Lab at the end if I do game development... you know, to develop my game in my STUDIO... or maybe just have "Studio" at the end, which is better than a Lab so you know the quality will be better! ;)
 

Meushi

Well-Known Member
Aug 4, 2017
1,146
12,717
You don't have a clue what you're talking about. The RPYC is a COMPILED version of the RPY file... recompiling it WITH THE DAMN GAME IT IS INTENDED FOR will NOT change compatibility! That's idiotic! Now go educate yourself, this is stupid.
I'm ignoring the other topic, already put them on ignore so I don't see their posts about it again.
Oh no, what a shame... :cry:

I'm sure Night Hawk has lots of programming experience, unfortunately he's apparently unfamiliar with the mechanics of how RenPy saves work & their reliance on maintaining RPYC files for save comparability between releases.
.rpyc files use what they call an AST tree. PyTom's original blog post is here :
It explains (at least implicitly) why deleting an .rpyc would break things, whilst forced recompiles wouldn't.
The basics are that when the game is incrementally built, each new iteration of the .rpyc file is based on the previous version. It grows and varies over time. As soon as you delete an .rpyc file, that previous "history" is lost and RenPy has to start from scratch with a new AST tree.
To reiterate, Night Hawk is mistaken on this matter. The SG patch now includes an RPYC file. As with all RenPy games, use the included RPYC if you don't want rollback errors and broken saves in the future.

Sadly Night Hawk's reluctance to consider advice means he's unlikely to see this information, and will continue to operate under a misconception on the importance of retaining RPYC files to maintain save comparability.

Given my ignorance & cluelesness, people will have to make up their own mind about who has the wrong end of the stick on this issue.
 

colombeen

Member
Modder
Jul 16, 2021
301
1,630
Gallery Unlock Script

Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: S1

Download:

DISCLAIMER
This script makes permanent changes to your persistent data.
Removing this script will not revert the changes that have been made.
Make a backup if you ever want to be able to revert back without completely removing your persistent data.
Python:
# Use this unlock script at your own risk.
# https://f95zone.to/threads/.29981/post-10376660

# Start the deal with the devil
init 666 python:
    persistent.unlockedImage_BookClub = True
    persistent.unlockedImageAmber1 = True
    persistent.unlockedImageAmber4 = True
    persistent.unlockedImageAmber7 = True
    persistent.unlockedImageAmber8 = True
    persistent.unlockedImageAyua1 = True
    persistent.unlockedImageAyua2 = True
    persistent.unlockedImageAyua3 = True
    persistent.unlockedImageBella10 = True
    persistent.unlockedImageBella16 = True
    persistent.unlockedImageBella17 = True
    persistent.unlockedImageBella18 = True
    persistent.unlockedImageBella19 = True
    persistent.unlockedImageBella20 = True
    persistent.unlockedImageBella21 = True
    persistent.unlockedImageBella22 = True
    persistent.unlockedImageBella23 = True
    persistent.unlockedImageBella4 = True
    persistent.unlockedImageBella5 = True
    persistent.unlockedImageBella6 = True
    persistent.unlockedImageBellaCh2_1 = True
    persistent.unlockedImageBellaCh2_2 = True
    persistent.unlockedImageBellaCh2_3 = True
    persistent.unlockedImageBellaCh41 = True
    persistent.unlockedImageBellaCh42 = True
    persistent.unlockedImageBellaCh47 = True
    persistent.unlockedImageBellaCh5_1 = True
    persistent.unlockedImageBellaCh5_2 = True
    persistent.unlockedImageBellaCh5_3 = True
    persistent.unlockedImageBellaCh5_4 = True
    persistent.unlockedImageBellaCh5_5 = True
    persistent.unlockedImageCeli1 = True
    persistent.unlockedImageCh4x1 = True
    persistent.unlockedImageCh4x2 = True
    persistent.unlockedImageCh4x3 = True
    persistent.unlockedImageCh4x4 = True
    persistent.unlockedImageCh4x5 = True
    persistent.unlockedImageCh4x51 = True
    persistent.unlockedImageCh5_C_1 = True
    persistent.unlockedImageCh5_C_2 = True
    persistent.unlockedImageCindy1 = True
    persistent.unlockedImageCindy2 = True
    persistent.unlockedImageClaire1 = True
    persistent.unlockedImageHari1 = True
    persistent.unlockedImageHari2 = True
    persistent.unlockedImageHill1 = True
    persistent.unlockedImageHill2 = True
    persistent.unlockedImageHill3 = True
    persistent.unlockedImageHill5 = True
    persistent.unlockedImageKaren1 = True
    persistent.unlockedImageKaren2 = True
    persistent.unlockedImageKate1 = True
    persistent.unlockedImageKate3 = True
    persistent.unlockedImageLayla1 = True
    persistent.unlockedImageMaja1 = True
    persistent.unlockedImageMaja2 = True
    persistent.unlockedImageMarla1 = True
    persistent.unlockedImageMarla2 = True
    persistent.unlockedImageMarla3 = True
    persistent.unlockedImageMila1 = True
    persistent.unlockedImageMilaCH2_1 = True
    persistent.unlockedImageMilaCH2_2 = True
    persistent.unlockedImageMilaCh4x511 = True
    persistent.unlockedImageMilaCh4x512 = True
    persistent.unlockedImageMilaCh4x513 = True
    persistent.unlockedImageMilaCh4x514 = True
    persistent.unlockedImageMilaCh4x515 = True
    persistent.unlockedImageMilaCh4x516 = True
    persistent.unlockedImageMilaCh4x517 = True
    persistent.unlockedImageMilaCh4x518 = True
    persistent.unlockedImageMilaCh4x519 = True
    persistent.unlockedImageMilaCh4x520 = True
    persistent.unlockedImageMilaCh4x521 = True
    persistent.unlockedImageMilaCh4x522 = True
    persistent.unlockedImageMilaCh4x523 = True
    persistent.unlockedImageMilaCH5_1 = True
    persistent.unlockedImageMilaCH5_2 = True
    persistent.unlockedImageNadia1 = True
    persistent.unlockedImageNadia2 = True
    persistent.unlockedImageNadia3 = True
    persistent.unlockedImageNadia5 = True
    persistent.unlockedImageNadia6 = True
    persistent.unlockedImageNadia7 = True
    persistent.unlockedImageNadia8 = True
    persistent.unlockedImageNadiaCH2 = True
    persistent.unlockedImageNami_CH2_1 = True
    persistent.unlockedImageNami_CH2_2 = True
    persistent.unlockedImageNami_CH2_3 = True
    persistent.unlockedImageNami_CH2_4 = True
    persistent.unlockedImageNami_CH2_5 = True
    persistent.unlockedImageNami_CH2_6 = True
    persistent.unlockedImageNami_CH2_8 = True
    persistent.unlockedImageNami14 = True
    persistent.unlockedImageNami17 = True
    persistent.unlockedImageNami18 = True
    persistent.unlockedImageNami3 = True
    persistent.unlockedImageNamiCh41 = True
    persistent.unlockedImageNamiCh42 = True
    persistent.unlockedImageNamiCh43 = True
    persistent.unlockedImageNamiCh44 = True
    persistent.unlockedImageNamiCh45 = True
    persistent.unlockedImageNamiCh46x = True
    persistent.unlockedImageNamiCh47 = True
    persistent.unlockedImageNamiCh48 = True
    persistent.unlockedImageNamiCh4x545 = True
    persistent.unlockedImageNamiCh4x547 = True
    persistent.unlockedImageNamiCh4x548 = True
    persistent.unlockedImageNamiCh4x549 = True
    persistent.unlockedImageNamiCh4x550 = True
    persistent.unlockedImageNancy1 = True
    persistent.unlockedImageNancy3 = True
    persistent.unlockedImageNia1 = True
    persistent.unlockedImageNia2 = True
    persistent.unlockedImageNia3 = True
    persistent.unlockedImageNia4 = True
    persistent.unlockedImageNojiko1 = True
    persistent.unlockedImageNojiko2 = True
    persistent.unlockedImageNojiko3 = True
    persistent.unlockedImageNojiko4 = True
    persistent.unlockedImageR_CH5_1 = True
    persistent.unlockedImageR_CH5_2 = True
    persistent.unlockedImageR_CH5_3 = True
    persistent.unlockedImageR_CH5_4 = True
    persistent.unlockedImageR1 = True
    persistent.unlockedImageR10 = True
    persistent.unlockedImageR11 = True
    persistent.unlockedImageR4 = True
    persistent.unlockedImageR5 = True
    persistent.unlockedImageR6 = True
    persistent.unlockedImageR7 = True
    persistent.unlockedImageR8 = True
    persistent.unlockedImageR9 = True
    persistent.unlockedImageRLFoursome4x5 = True
    persistent.unlockedImageRLWSMila4x5 = True
    persistent.unlockedImageRobin1 = True
    persistent.unlockedImageRobin2 = True
    persistent.unlockedImageRS41 = True
    persistent.unlockedImageRS42 = True
    persistent.unlockedImageRS43 = True
    persistent.unlockedImageRS44 = True
    persistent.unlockedImageRS45 = True
    persistent.unlockedImageRS46 = True
    persistent.unlockedImageRS47 = True
    persistent.unlockedImageRS48 = True
    persistent.unlockedImageRS49 = True
    persistent.unlockedImageRS50 = True
    persistent.unlockedImageRS51 = True
    persistent.unlockedImageRS52 = True
    persistent.unlockedImageRS53 = True
    persistent.unlockedImageRS54 = True
    persistent.unlockedImageRS55 = True
    persistent.unlockedImageRS56 = True
    persistent.unlockedImageRS57 = True
    persistent.unlockedImageRS58 = True
    persistent.unlockedImageRS59 = True
    persistent.unlockedImageRS60 = True
    persistent.unlockedImageRS61 = True
    persistent.unlockedImageRS62 = True
    persistent.unlockedImageRS63 = True
    persistent.unlockedImageS1 = True
    persistent.unlockedImageS2 = True
    persistent.unlockedImageS3 = True
    persistent.unlockedImageS4 = True
    persistent.unlockedImageS5 = True
    persistent.unlockedImageSasha1 = True
    persistent.unlockedImageSasha2 = True
    persistent.unlockedImageSasha3 = True
    persistent.unlockedImageSasha4 = True
    persistent.unlockedImageSasha5 = True
    persistent.unlockedImageSasha6 = True
    persistent.unlockedImageSonya1 = True
    persistent.unlockedImageSonya2 = True
    persistent.unlockedImageSonya3 = True
    persistent.unlockedImageSonya4 = True
    persistent.unlockedImageSonya5 = True
    persistent.unlockedImageSonya6 = True
    persistent.unlockedImageSonya7 = True
    persistent.unlockedImageSonya8 = True
    persistent.unlockedImageST_CH5_1 = True
    persistent.unlockedImageST_CH5_2 = True
    persistent.unlockedImageST_CH5_3 = True
    persistent.unlockedImageST_CH5_4 = True
    persistent.unlockedImageST_CH5_5 = True
    persistent.unlockedImageST_CH5_6 = True
    persistent.unlockedImageST_CH5_7 = True
    persistent.unlockedImageST_CH5_8 = True
    persistent.unlockedImageTwins1 = True
    persistent.unlockedImageVanessa1 = True
    persistent.unlockedImageVanessa5 = True
    persistent.unlockedImageVic1 = True
    persistent.unlockedImageVic2 = True
    persistent.unlockedImageVic3 = True
    persistent.unlockedImageVic5 = True
    persistent.unlockedImageVicCh2_x1 = True
    persistent.unlockedImageVicCh4x58 = True
    persistent.unlockedImageVicCh4x59 = True
    persistent.unlockedImageVicCh4x60 = True
    persistent.unlockedImageVicCh4x61 = True
    persistent.unlockedImageVicCh4x62 = True
    persistent.unlockedImageVicCh4x63 = True
    persistent.unlockedImageVicCh4x64 = True
    persistent.unlockedImageVicCh4x65 = True
    persistent.unlockedImageVicCh4x67 = True
    persistent.unlockedImageVicCh4x68 = True
    persistent.unlockedImageVicPic = True
    persistent.unlockedImageZara1 = True
    persistent.unlockedImageZara2 = True
    persistent.unlockedImageZara6 = True
    persistent.unlockedImageZara7 = True
    persistent.unlockedImageZara8 = True
    
    # Make sure the replay scenes are clickable
    for label in renpy.get_all_labels():
        renpy.game.persistent._seen_ever[label] = True
        renpy.game.seen_session[label] = True
 
Last edited:

Jordanskene01

Member
Dec 11, 2022
172
347
Edit: In the name of keeping things on topic, what do you like about Nadia? Usually, when people come here, they automatically flock to Bella or Nami. I think this is the first time I've seen someone with a Nadia profile pic since I came hereღ
I Love Nadia when she has a Banana in her hands as she's both adorable and funny at times.

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

yossa999

Well-Known Member
Dec 5, 2020
1,768
11,531
Oh no, what a shame... :cry:

I'm sure Night Hawk has lots of programming experience, unfortunately he's apparently unfamiliar with the mechanics of how RenPy saves work & their reliance on maintaining RPYC files for save comparability between releases.

To reiterate, Night Hawk is mistaken on this matter. The SG patch now includes an RPYC file. As with all RenPy games, use the included RPYC if you don't want rollback errors and broken saves in the future.

Sadly Night Hawk's reluctance to consider advice means he's unlikely to see this information, and will continue to operate under a misconception on the importance of retaining RPYC files to maintain save comparability.

Given my ignorance & cluelesness, people will have to make up their own mind about who has the wrong end of the stick on this issue.
Hey Meushi, thanks for the links and the explanation, I myself was also curious why to keep .rpycs and increase the download size when they can be rebuilt at any time (I thought it was to accelerate the first launch of the game) now I see why. Yep, the PERIOD guy doesn't even seem to understand what you're talking about, he was too busy breaking through the open door. What bothered me the most was his idea that the .rpy file is just a harmless text file, so it can always be safely placed in the game folder and the game launched. I had a flashback at that moment, the faces of the victims of the infamous penis enlargement scam emails who opened the attachment to those emails :HideThePain: Guys, when you download renpy patches from an unknown or questionable source, please, don't be lazy and check them for viruses before applying.
 

yossa999

Well-Known Member
Dec 5, 2020
1,768
11,531

PaxHadrian17

Well-Known Member
Sep 8, 2020
1,728
8,447
One of my favorite jokes in the game!
I find Nadia is more endearing with the reworked CH 2.

Bella has to put up with Nadia repeatedly poking her in the face with her banana to stop Bella from the staring contest with the MC that is making her uncomfortable.

Add that to how uber competitive she is when it comes to sports (like the first BB game where Bella keeps hip checking the MC to the floor and the BB game with Zara where she and Zara hug then almost get into a fight over who will be their team captain).

Then add in the social awkwardness, the roleplaying games where she lives for other worlds and the diaries/journals she keeps.

She is another mystery woman with so much going for her.

It will be interesting to see why Nadia is this interesting mix of characteristics.

In the same way we got to see part of the Bella Mila backstory in the bibi Bella flashback, I'm looking forward to the same for Bella and Nadia.

The reveal of those past connections is part of what makes Summers Gone so interesting to me!
 

yossa999

Well-Known Member
Dec 5, 2020
1,768
11,531
I find Nadia is more endearing with the reworked CH 2.

Bella has to put up with Nadia repeatedly poking her in the face with her banana to stop Bella from the staring contest with the MC that is making her uncomfortable.

Add that to how uber competitive she is when it comes to sports (like the first BB game where Bella keeps hip checking the MC to the floor and the BB game with Zara where she and Zara hug then almost get into a fight over who will be their team captain).

Then add in the social awkwardness, the roleplaying games where she lives for other worlds and the diaries/journals she keeps.

She is another mystery woman with so much going for her.

It will be interesting to see why Nadia is this interesting mix of characteristics.

In the same way we got to see part of the Bella Mila backstory in the bibi Bella flashback, I'm looking forward to the same for Bella and Nadia.

The reveal of those past connections is part of what makes Summers Gone so interesting to me!
Absolutely do agree. It is more interesting to observe the evolution of Nadia from the first chapter version before the rework. When Trey told MC about their classmates in the auditorium then, he described Nadia as a self-absorbed person who doesn't talk too much, always reads and all, and that she's inpenetrable. I was pretty sure she was the secret trans that the game warned about at the beginning :KEK: But I love how her character has changed and I can't wait to see more of her. Although who am I lying to, I want to see more of them all and I want it NOW!!!111
 

Ali ibn Hassan

Engaged Member
Dec 19, 2019
2,320
9,782
Nadia is a divine creature and lives in a penthouse infinite floors above us mortals.
To dream up doing the naughty with her would bring down wrath and destruction of not only biblical but Olympian proportions.

But what can a simple mortal do but dream! Such sweet dreams of heavenly joy!

The rest of them gals are up for more handy thoughts.

Believe or face the consequences!
 
  • Like
Reactions: PaxHadrian17
4.40 star(s) 493 Votes