Create and Fuck your AI Slut -70% OFF
x

Ren'Py Baskin All-In the Family [Ch.2] [TheSugarRay]

3.30 star(s) 16 Votes

Quetzzz

Active Member
Sep 29, 2023
934
1,436
267
Took a look at this game's coding, and it's a mess.

To be clearheaded enough to pull out, the player has to be drunk.
Python:
    if partydrink >= 4:
        "You feel the sensation of cum building up in the base of your cock. If you are pulling out, you need to do it how."
        menu:
            "She said she wants it inside.":
                # -----8<----
            "Pull out.":
                # -----8<----
There's no way to get Tulip's score high enough to get her dialog in the bathroom:
1743250485262.png

The dev uses "call" instead of "jump" to skip to certain labels. A call creates a new "layer" from where the code continues. After the first "return" (Like at the end of the game), the code will return to the place the call happened.
Python:
    menu:
        "Talk to your family.":
            call partybrytalk from _call_partybrytalk_1
        "Your ex keeps looking at you.":
            call partytalkgail from _call_partytalkgail_2
# Has to be:
    menu:
        "Talk to your family.":
            jump partybrytalk
        "Your ex keeps looking at you.":
            jump partytalkgail
# Or, the code's flow needs to account for the usage of 'call' with labels that 'return' to the actual flow.
As far as I can tell, it's impossible to make out with both Hermione and Gail at the party.
The branch where Hermione and the MC kiss (partytime == 2) also finishes the party. Talking with Gail always ends the party.
Code:
    if hermmakeout == True:
        m "I'll go say hello. You need to head out of the parking lot. Hermione stopped to say hello but she doesn't want to come in."
        n "Hermione?"
        m "Hurry."
        scene parkinglot1
        "You step back into the summer sun."
        if gailmakeout == True:
                # -----8<----
I also highly suggest the dev runs the dialog of this game through a spellchecker. In a pinch, Grok can be used for this. This AI understands ren'py scripts and will be able to flag (and correct) grammar, spelling and even narrative inconsistencies.
 

BOZZU

Member
Nov 2, 2024
375
648
191
Here's my compressed Unofficial Android Port of "Baskin All-In the Family" Chapter 2:



Mods: 0011 addons

Download:
APK size: 508 MB

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.


Some phones may require you to force close and relaunch the app after granting storage permissions in order for the game to load.
 
Last edited:
  • Heart
Reactions: Vpuri

Radical_Dreamer

Active Member
Donor
Aug 26, 2018
641
1,164
328
So I keep running into this game in my files and been tempted to delete it, but it's still not flagged as abandoned...

Even though it's gone a full year without an update. Is it dead or not? lol
 

hakulaku97

Well-Known Member
Mar 13, 2019
1,670
4,331
471
So I keep running into this game in my files and been tempted to delete it, but it's still not flagged as abandoned...

Even though it's gone a full year without an update. Is it dead or not? lol
well i think you need to decide for yourself as far as i know the tag comes only if the dev comfirmed it or if 6 month of total radio silence are present

the dev still posts progress updates
 
  • Like
Reactions: Radical_Dreamer

Fappable One

Active Member
May 14, 2020
793
1,074
308
Not to be 'that guy' but this doesn't mean much to me. Last game update was more than a year ago. Thought the automatic 'abandoned' tag was added after a year
 

Raziel_8

Forum Fanatic
Dec 4, 2017
4,802
12,617
719
Not to be 'that guy' but this doesn't mean much to me. Last game update was more than a year ago. Thought the automatic 'abandoned' tag was added after a year
After 18 months, or after more then 3 months of no news from the dev (like on patreon).
 
3.30 star(s) 16 Votes