Create and Fuck your AI Slut -70% OFF
x

Son of Durin

Engaged Member
Jul 5, 2021
3,685
6,684
523
Damn, that takes me back. Missile Command and Centipede were the ones I played the most at arcades ... and we had a special knob attachment for our later Ataris to play games like Tempest.

However, most of my time at arcades was spent at Pinball machines or Skeeball though. Man, I wore the Buck Rogers machine at the Straw Hat out! And I'd amassed so many tickets from the local amusement park arcade that when my then-pre-teen cousin visited when I was in my 20s I told her she could have whatever she wanted from the prize counter ... she picked a good one. Only cost a few thousand tickets. (The worker wasn't happy with me, but kept smiling for my cousin)

One of the most painful moments for me (philosophically speaking) was when the last pinball machine was taken out of the place I bowl league at (in fact, apparently it was so painful a memory I can't remember if it happened before closing for the pandemic or after reopening). Anyway, probably hadn't played it more than once or twice a year when it happened, but still ...

EDIT: Almost forgot. Got my first boombox with tickets from that same arcade ^_^ That also came with me and my Commodore.
A good friend had a pinball machine at home - dad was a Doc, mom a RN. It was in the utility room that served as a "pool house". I almost liked the pinball more than the pool, but I liked the girls in the pool better than the pinball, so....
 

Son of Durin

Engaged Member
Jul 5, 2021
3,685
6,684
523
You genX guys make me feel young again.
I'm barely Gen-X - I think I was within the first 12 or 15 months of the "new" generation.

I think my parents were technically pre-boomers: they came around in the year before the US entered WW2.
 

SFS_Stoya

New Member
Apr 18, 2023
14
73
23
Stone Fox Studios / Kentyrr

Bug Report - Chapter 6

During the mod overhaul I'm currently under I've gone over everything with a fine-toothed comb and added new features to the mod. One of them is a proper dynamic pathing stat that alerted me to an issue late in Chapter 6 that I never caught before and haven't seen mentioned anywhere... and it can be a problem depending on a very common Player pathing setup.

If the Player is on Jaye's Path, chose to be in an "Intimate" relp with Mal, then doesn't "Friendzone" Jaye at the resort we have a conflict of outcomes in the label ch6room2.

At the start of the label the conditional forces the MalRelpState variable to change from "Intimate" to "Cheat" (I write them in quotes for clarification since they are obviously integers):
Python:
    if num025 == 1:
        $ num025 = 4  # SanchoNote: This is a problem, see line 4343 which becomes impossible
The above integer change makes the below Mallory TrustPnt change in the same label impossible:
Python:
    if bool100 == False:  # SanchoNote: Player did NOT go for another "round" with Mal in the morning (69 scene).
        if num025 == 1:  # SanchoNote: this is impossible due to the above which changed the var to 4, none of the below will trigger.
            $ UpdateRP(-8, "num003")
            $ ClearNotify()
            ath "Sorry Mal...I'm only human."
So, I'm at a crossroads in finalizing the multi-day mod "reduex": Which do you intend to keep as reference (num025(1) or num025(4)) and should Mallory's Trust be reduced or not (because it currently isn't possible), etc at the end of Chapter 6 (and therefore the start of the pending Chapter 7).

I've gone over the conditionals in the Chapter 6 "Summary" and luckily none of those are borked due to the above, but it's still an issue since, as of the end of Chapter 6 in it's current form (and those Player's current saves), if the Player is on Jaye's Path, told Mallory they feel the relp is "Intimate", stayed on Jay's Path and slept with her, then Mal's RelpState variable is now 4 (cheated) and her Trust is NOT reduced by any amount (-8 noted above doesn't trigger).

This should be somehow resolved (however you wish) in the initialization of the pending Chapter 7 starting code script (to check the setup above and adjust as needed/desired). But, I'd like to ask what your outcome is going to be ahead of time so I can finish this dang project rewrite thru Ch6. Regards.
Hey Sancho,

DM me when you get a chance and I'll give you the deets on how this and other bugs will be dealt with in Ch7.

This is a throwaway account, so I don't have enough post history to DM you directly.

Thanks!

Stoya
 

Kassan06969

Well-Known Member
Apr 14, 2022
1,679
2,469
274
I still can't believe people get butthurt and think it's ntr when 2 of the girls hook up together. My best friend when we were 22 (LONG ago) was ecstatic when his girlfriend (who was a stripper!) said he could be with other girls as long as he brought them back to her.
 

Elhemeer

Conversation Conqueror
Jun 20, 2022
7,822
13,130
812
I still can't believe people get butthurt and think it's ntr when 2 of the girls hook up together. My best friend when we were 22 (LONG ago) was ecstatic when his girlfriend (who was a stripper!) said he could be with other girls as long as he brought them back to her.
I'm with you, but for some people it's the same. I don't get it, but I get it.

Of course, if that's difficult for a person, not sure how they play most games available on this site ...
 

PaxHadrian17

Engaged Member
Sep 8, 2020
2,715
13,850
678
Chasing Sunsets will be releasing a new Chapter soon, based on everything the dev's have shared on Patreon/SS/Discord.

In other news:


PSA for the day = Troll Alert.

Please stay off their bridges and avoid 'feeding' them with responses.

If they starve from a lack of notice, they will go away (that and hitting ignore ...)
 

colombeen

Member
Modder
Jul 16, 2021
368
2,500
397
Gallery Unlock Script

Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: v0.8 (but should work on future versions)

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.
SIDENOTE
This mod shouldn't interfere with other mods.
Python:
# Use this unlock script at your own risk.
# https://f95zone.to/threads/.62625/post-10577011

# Start the deal with the devil
init 666 python:
    # Check if the scene list was defined
    if not persistent.scene_list is None:
        # Loop through all persistent data
        for gallery_unlock_item in persistent.scene_list:
            if gallery_unlock_item.is_locked == True:
                unlock_scene_item(gallery_unlock_item.item_id)

    # Check if the image list was defined
    if not persistent.image_list is None:
        # Loop through all persistent data
        for gallery_unlock_item in persistent.image_list:
            if gallery_unlock_item.is_locked == True:
                unlock_image_item(gallery_unlock_item.item_id)

    # Check if the achievements list was defined
    if not persistent.achievements is None:
        # Loop through all persistent data
        for achievement_unlock_item in persistent.achievements:
            if achievement_unlock_item.is_locked == True:
                unlock_achievement(achievement_unlock_item.achievement_id, True)
 
Last edited:
4.60 star(s) 417 Votes