I stuck at turn 10. Unable to proceed beyond discussion with Lily, she kept saying I forget something
I mean that basically is the 'sharing' line, no?It would be interesting if there was an incentive to "play well" for people who also want to get cucked. Maybe Emma or some other girl could be persuaded to cuck the MC while having a good relationship with her.
Oh, maybe it is but I have not tried it, thanks.I mean that basically is the 'sharing' line, no?
I don't know. Meaning right now there's not enough content on that line to answer you accurately--it's just the ace clothing change in Emma and mc in shower room. The later shower bj is on the ntr path, so that's different.Oh, maybe it is but I have not tried it, thanks.
I mean Ace getting the girl and the MC just getting to watch. Is that what it is?
Only by turning on vanilla mode. Otherwise, it’s a gamble.Can we guarantee that at least one girl is the path of pure love?
Only thing he's missing is being 10-feet tall with a 3-foot dick like in the game.Ace RL
Nice trailer. Very hype.September 12 Development Log
Coding is boring to many people, so to lure you into this devlog, I will first show you the game’s fancy new SFW trailer:
You must be registered to see the links
Please let me know what you think about it, good or bad, as I’m looking to improve.
Now, on to everyone’s least exciting news—coding changes:
- Filename re-structured: Script files have been renamed to reflect the code inside them. Ex. Scripts.rpy is now Maingameloop.rpy.
- Removed excess labels/functions. A lot of labels simply had two or three lines of code, and so those “orphans” were returned to their “parents” that were calling them.
- Scenes fire using interpolated strings. This way scenes aren’t shown out of order, or not at all.
- Sprites now have a clothing and lighting setting, so I don’t have to specify it every time I show a sprite.
- Sprites are now designated using filename string interpolation.
- Game systems are organized into modules. Ex. Rumor, Bodyshot, Nemesis. The main game loop calls and returns these modules. This keeps the game nested in the main loop, rather than daisy-chained from one label to another.
- Character-specific properties are stored in classes. Changes to those properties are made via functions. Ex. Nemesis Score, drunken states, etc.
- Home screen properties are now stored in classes. Ex. Visible characters, interactive doors, changing lighting, etc.
How does this affect you? In the long-run, far less bugs. Also, shorter time developing code. For example, if there’s an issue with the rumor system, keeping it contained to its own module means less time re-reading code.
Also, if I’m ever so lucky that someone creates mods for features that I don’t have time to maintain (cough, cough, Gallery Mod), the code re-structuring will make it much easier for them.