User690690

Newbie
Jan 24, 2019
64
123
I mean... its more realistic than most games
Like Summertime saga where you help every soul you meet
Its a great game but from time to time its fun to be an asshole xD
I agree, some games are all about hooking up with all the characters and that's fine. This game is more about establishing relationship(s) and is far more story driven.
 
  • Like
Reactions: alex2011

cckerberos

Member
Jun 12, 2017
456
952
I made a simple mod to be able to view all stats on a single page from the menu. Kind of like the existing progress page (which I only learned about when Selebus mentioned it yesterday) but more compact:

LIL Progress Mod.JPG

In what is admittedly a not very useful gimmick, girls only show up on the list after being introduced in the story (hence the absence of Niki and Noriko in the screenshot).
 

vehemental

Member
Jun 4, 2017
430
1,882
I made a simple mod to be able to view all stats on a single page from the menu. Kind of like the existing progress page (which I only learned about when Selebus mentioned it yesterday) but more compact:

In what is admittedly a not very useful gimmick, girls only show up on the list after being introduced in the story (hence the absence of Niki and Noriko in the screenshot).
Nice work! I turned it into a table (and scorched the earth of all instances of "== True") because redundancy is my least favorite thing being redundancy.

I don't actually have a save with all the girls unlocked because I started fresh so I'm not sure if they're all working, but the spirit is willing even if the flesh might be weak at least.

Note: "Progress" in the Quick Menu goes to the old style, "Progress" in the main menu goes here)

table.jpg
 

cckerberos

Member
Jun 12, 2017
456
952
Nice work! I turned it into a table (and scorched the earth of all instances of "== True") because redundancy is my least favorite thing being redundancy.

I don't actually have a save with all the girls unlocked because I started fresh so I'm not sure if they're all working, but the spirit is willing even if the flesh might be weak at least.

Note: "Progress" in the Quick Menu goes to the old style, "Progress" in the main menu goes here)

View attachment 1146439
Very nice! I had never touched Renpy (or Python) before and looking into how to make an actual table was more effort than I was willing to make (and it never even occurred to me that if statements could be truncated like that).

It works with all of the girls unlocked, but it's a tight fit. The start of the table will have to be moved higher or the text size reduced when the last four girls are added in the next few updates.

Also worth mentioning to anyone else reading that this version is for 0.15.0 part 1 only. It will crash 0.14.0.
 
  • Like
Reactions: vehemental

vehemental

Member
Jun 4, 2017
430
1,882
Very nice! I had never touched Renpy (or Python) before and looking into how to make an actual table was more effort than I was willing to make (and it never even occurred to me that if statements could be truncated like that).

It works with all of the girls unlocked, but it's a tight fit. The start of the table will have to be moved higher or the text size reduced when the last four girls are added in the next few updates.

Also worth mentioning to anyone else reading that this version is for 0.15.0 part 1 only. It will crash 0.14.0.
Don't feel bad, I had to shell out almost six figures for a CS degree to learn it. There are much better ways to :ROFLMAO:

For future reference, "vbox" means vertical box (vertical referring to the arrangement of the "text" objects) and are used as the columns of the table here. There was one big one originally, I just split it up into four.

"xpos" and "ypos" refer to the x (horizontal) and y (vertical) axis positions of the upper left corner of the vbox. We're using relative positioning here which goes from 0.0 to 1.0 to represent a position as a fraction of the total screen height or width. You can also think of it as 0% to 100% - so "xpos .25" means 25% across the screen from the left (all the way left is 0.0, all the way right is 1.0), and "ypos .15" means 15% of the way below the top (0.0 is the very top, 1.0 is the very bottom. Don't blame math for this being backwards, or even Renpy really, this is an old school computer graphics processing standard).

So to make room for more names at the bottom - I think a scrollbar will automatically show up if it overflows, but that sucks - all you would need to do is change the "ypos" values for each "vbox" to .10 or less. That will move the top of the columns higher.

Updated my event tracker/guide for 0.15.0 Part 1.

Awesome update: Chika, Maya and a little bit of Sara makes me a happy consumer :D
I've been using this in my new scratch playthrough. Very helpful!
 

AgumenticR

Member
Sep 6, 2018
177
351
what do you guys think?
Option 1 locks you out of an event, from what I gathered, and that is just not acceptable in my book. No ugly red strikethrough words here, thank you very much. Also, I think the current "harem" route is not the place for sparing girl's feelings at the cost of not going for them. Leave that for purity routes sometime later this decade.
 

Lolicon Kami

Well-Known Member
Nov 3, 2019
1,659
2,259
Option 1 locks you out of an event, from what I gathered, and that is just not acceptable in my book. No ugly red strikethrough words here, thank you very much. Also, I think the current "harem" route is not the place for sparing girl's feelings at the cost of not going for them. Leave that for purity routes sometime later this decade.
Thanks! I'll go with option 2 then :)
 

alex2011

Conversation Conqueror
Feb 28, 2017
7,724
4,468
Goddamit, man, you really piqued my interest and my hand moved to wallet to immediately gain access to patron build. I'm an old seasoned pirate yarrrrr, but even I begin to cave in. Still holding though, but that day when I gib Selebus money is dangerously close.
It is well worth the cost, even worth the cost of sacrificing all my other projects, there are only a few, to give me the little bit more I need to up my patronage to this.

You don't have permission to view the spoiler content. Log in or register now.
Not very close at all, not even out of the single digit percentage completion last I checked.

Option 1 locks you out of an event, from what I gathered, and that is just not acceptable in my book. No ugly red strikethrough words here, thank you very much. Also, I think the current "harem" route is not the place for sparing girl's feelings at the cost of not going for them. Leave that for purity routes sometime later this decade.
Absolutely not, red is unacceptable unless it is being used to indicate when specific characters assigned said color are speaking. Failure is not an option for me and any time I do is an instant restart. I punish myself VERY severely, at least in terms of gameplay, for being a bad homie at any point in the game to any character.

I really don't know if I'd want to visit a diner that had a 'Sausage Fest' on the menu...

God, Kaori is so fucking weird, but I'm beginning to like her.

Edit:
You don't have permission to view the spoiler content. Log in or register now.
Another line in that 'sausage fest' scene made it into my signature. I almost quoted her 'enjoy your sausage fest' line, but found the one I quoted to be much more...appropriate.
 

Deleted member 1697433

Lessons in Love
Donor
Game Developer
Oct 8, 2019
947
5,472
Nice work! I turned it into a table (and scorched the earth of all instances of "== True") because redundancy is my least favorite thing being redundancy.

I don't actually have a save with all the girls unlocked because I started fresh so I'm not sure if they're all working, but the spirit is willing even if the flesh might be weak at least.

Note: "Progress" in the Quick Menu goes to the old style, "Progress" in the main menu goes here)

View attachment 1146439
Do you mind if I steal this? That’s really close to what I wanted to do with that menu but haven’t been able to yet.
 

Raf-Raf

Conversation Conqueror
Dec 4, 2019
6,563
8,610
Nice work! I turned it into a table (and scorched the earth of all instances of "== True") because redundancy is my least favorite thing being redundancy.

I don't actually have a save with all the girls unlocked because I started fresh so I'm not sure if they're all working, but the spirit is willing even if the flesh might be weak at least.

Note: "Progress" in the Quick Menu goes to the old style, "Progress" in the main menu goes here)

View attachment 1146439
This is pretty much what I wanted instead of looking at every. single. person only to forget what I saw few secs after.
 

vehemental

Member
Jun 4, 2017
430
1,882
Do you mind if I steal this? That’s really close to what I wanted to do with that menu but haven’t been able to yet.
Have at it my good man. Let me know if I can help modify it in any way.

Dude, it's a pirate site. So...
And yet the mod I made is for an unreleased and unleaked version of the game. It costs nothing to be polite ;)
 
Last edited:
4.10 star(s) 325 Votes