cooldevo

Active Member
Jan 30, 2021
687
785
Everyone told me you need to load an older save... but that didn't work for me, I had to restart from the beginning
If the save is before Artemis says "Fuck" then it should load ok. Anything after that doesn't seem to load... at least until a patch is released.
 
  • Heart
Reactions: sigvar

sisco1986

Member
Dec 29, 2018
222
412
I know it's probably "old code" but there are a lot of exception errors in the ch2_sdcards.rpy file. I keep having to click ignore.

I don't seen any obvious differences in the code between ch1_sdcards.rpy and ch2_sdcards.rpy that would cause the errors. It's only super frustrating because as long as the sd card is on screen, you miss any dialog happening. You have to ignore every interaction until the sd card is gone.
Yeah I was replaying from the start myself and I just got there too...
https://f95zone.to/threads/artemis-v0-6-digi-b.77680/post-16685086
 
  • Like
Reactions: korte7

Brother Lui

Member
Jan 15, 2019
234
381
I don't care what the reason is, I own this on Steam. Why the hell am I seeing this here sooner than on Steam? This is one of the reasons why I no longer purchase games until they are in their final form.
:oops: That statement : "I own this on Steam" wow :ROFLMAO::ROFLMAO::ROFLMAO: Really in which century you live? Who said you that you own your games which you paid on Steam ?? :LOL::LOL: For the time being you may just have the license to play it for a while :ROFLMAO::ROFLMAO: No ownership on Steam !! Wake up.... and if you truly want to own it better download it from here than Steam. As to help the Developer best buy it from Itch.io seriously maybe from Itch.io you may own it also.
 

Miskatonic81

Member
Aug 2, 2020
110
141
It's been a few years since I've played this but I remember really liking Zelda. Does the game push Artemis as a sort of main love interest or does every girl get a chance to shine?
 

whatone

Member
Dec 8, 2024
267
800
lol This had me cracking up laughing. I was a Spectrum 48k owner, but lots of my mates had the Commodore 64.
1744251389089.png
The 80's, when computer memory was measured in kilobytes, not gigabytes! Reminds me of loading Commando, Jet-Pac, Spy Hunter & Beach Head from tape. :LOL::ROFLMAO:

It's been a few years since I've played this but I remember really liking Zelda. Does the game push Artemis as a sort of main love interest or does every girl get a chance to shine?
Artemis does gain LP, same as the other girls do, but I think you really have to choose one to pursue.
I currently have Zelda, Paige & Reina displaying "Interested" in their bio (due to the amount of LP gained with each), but haven't actually done anything with any of them yet. Zelda is the one I like most, too.
 
  • Heart
Reactions: pitao and Maccabbee

mustadio7813

New Member
May 20, 2022
8
2
Edit: Updated for v0.6

I've made a multi-mod for this game


Features:
  • Walkthrough - added green color for best dialogue options
  • Added unlock all options for the archives (scenes and images)
  • During free roam objects that can be interacted with are highlighted
  • Scene changes (Can get both Katy and Zoe scenes, can call both Katy and Zelda)

Download: MEGA PIXELDRAIN

Thanks for the mod, but when I paste on the game, I can't see the green words to choose the right path and broke my game.... Can you check it please.
 

slick97

Active Member
Dec 2, 2021
700
1,844
Artemis does gain LP, same as the other girls do, but I think you really have to choose one to pursue.
I currently have Zelda, Paige & Reina displaying "Interested" in their bio (due to the amount of LP gained with each), but haven't actually done anything with any of them yet. Zelda is the one I like most, too.
To add further - if you're on Zelda's path this update (which is defined as taking Zelda to the airport) then you're actively locked out of Paige's content as well.

As for Artemis, you can earn upwards of 26 points with her as of v0.6 (only tracked internally instead of on the phone as well). There's also a few extra variables being tracked for her:
You don't have permission to view the spoiler content. Log in or register now.

I'm speculating that we'll start to see some reaction from Artemis based on our past actions when she goes to the INK mansion. While not all variables pertain to future consequences, there are two that could result in specific responses further down the line that coincide with high affinity towards her.
 

5mithers

Member
Aug 3, 2019
268
283
I know it's probably "old code" but there are a lot of exception errors in the ch2_sdcards.rpy file. I keep having to click ignore.

I don't seen any obvious differences in the code between ch1_sdcards.rpy and ch2_sdcards.rpy that would cause the errors. It's only super frustrating because as long as the sd card is on screen, you miss any dialog happening. You have to ignore every interaction until the sd card is gone.

digi.B: I figured out this error. Took me longer than I care to admit. Because there is an obvious difference in the ch1 and ch2 code, but I missed it yesterday.

And that is the the extra if/else wrapper around the increment command for steam achievements.

Chapter 1 SD card code (functional in the f95 variant of the game):
Code:
            focus_mask True
            if not steambuild:
                action [Hide ("ch1_junesd_01"),SetField(persistent,"ch1_sdcard_june_1", True),Show("dlbonusunlocked")]
            else:
                action [Hide ("ch1_junesd_01"),SetField(persistent,"ch1_sdcard_june_1", True),SetVariable("persistent.AAB1_23", persistent.AAB1_23 + 1),Function(steamaa23),Show("dlbonusunlocked")]
Chapter 2 SD card code (non-functional in the f95 variant of the game):
Code:
            focus_mask True
            action [Hide ("ch2_kindrasd_01"),SetField(persistent,"ch2_sdcard_kindra_1", True),SetVariable("persistent.AAB1_23", persistent.AAB1_23 + 1),Function(steamaa23), Show("dlbonusunlocked")]
I know the non-steam build is probably not your focus, but it is unfortunate that every scene from ch2-ch4 that has an SD card in it is broken. ch5 completely foregoes the steam bonuses/achievement unlock. (Not sure if that's because WIP, or on purpose.)

Anyway, summary of the variants in the codebase below:

Code:
# Chapter 1 if/else wrapper:
# ---------------------------------------
            focus_mask True
            if not steambuild:
                action [Hide ("ch1_kindrasd_01"),SetField(persistent,"ch1_sdcard_kindra_1", True),Show("dlbonusunlocked")]
            else:
                action [Hide ("ch1_kindrasd_01"),SetField(persistent,"ch1_sdcard_kindra_1", True),SetVariable("persistent.AAB1_23", persistent.AAB1_23 + 1), Function(steamaa23), Show("dlbonusunlocked")]


# Chapter 2 steam only:
# ---------------------------------------
            focus_mask True
            action [Hide ("ch2_kindrasd_01"),SetField(persistent,"ch2_sdcard_kindra_1", True),SetVariable("persistent.AAB1_23", persistent.AAB1_23 + 1),Function(steamaa23), Show("dlbonusunlocked")]


# Chapter 3 steam only:
# ---------------------------------------
            focus_mask True
            action [Hide ("ch3_artemissd_01"),SetField(persistent,"ch3_sdcard_artemis_1", True),SetVariable("persistent.AAB1_23", persistent.AAB1_23 + 1),Function(steamaa23),Show("dlbonusunlocked")]
         

# Chapter 4 steam only:
# ---------------------------------------
            focus_mask True
            action [Hide ("ch4_dksd_01"),SetField(persistent,"ch4_sdcard_dk_1", True),SetVariable("persistent.AAB1_23", persistent.AAB1_23 + 1),Function(steamaa23), Show("dlbonusunlocked")]


# Chapter 5 non-steam only:
# ---------------------------------------
            focus_mask True
            action [Hide ("ch5_vsd_01"),SetField(persistent,"ch5_sdcard_v_1", True), Show("dlbonusunlocked")]

*Edit: sisco1986 : A workaround for now is to simply set the steam variable in the console in the game prior to chapter 2 to any integer. It then happily increments the integer going forward, allowing for the scenes to be played.

Open the console in game (Shift+O), then type: persistent.AAB1_23=1

Prior to doing so, with the first ch2 SD card scene you get this:
1744261595444.png

1744261861838.png

After setting the variable, you get the next image as expected, with the SD card showing:
1744261751881.png
 
Last edited:

Zod666

Member
Nov 1, 2020
205
379
I'd say great update so far, however Paige market hangout has this weird AI? filter, like its trying to be breach into realism. It looks ugly as hell imo, hope its not coming up again, there just something really off putting with it.

screenshot0001.png
 

Scooter_Tramp

Member
Dec 23, 2022
347
723
I see sex with Reina in the gallery but my date didn't end that way even though Reina was mulling over possible sex with MC???
 

Zod666

Member
Nov 1, 2020
205
379
screenshot0002.png

Hold on, just cause i was nice and drove some girl to airport a year ago, now i cant get my dick wet?
In a linear game all these pseudo split paths where you decide your girl, should come online as late as possible, not years in advance, other wise you just deny the player some fap material. By the end of the game, once you got to know every LI, you can make a that choice. Holding Ctrl, scratching your head through free roam, trying to remember every choice you made through the years, just to see 1 additional scene and read some dialogue variation is no bueno.
Also veronica isnt even unlocked for me even tho i had a date at her place.
 

sisco1986

Member
Dec 29, 2018
222
412
View attachment 4730861

Hold on, just cause i was nice and drove some girl to airport a year ago, now i cant get my dick wet?
In a linear game all these pseudo split paths where you decide your girl, should come online as late as possible, not years in advance, other wise you just deny the player some fap material. By the end of the game, once you got to know every LI, you can make a that choice. Holding Ctrl, scratching your head through free roam, trying to remember every choice you made through the years, just to see 1 additional scene and read some dialogue variation is no bueno.
Also veronica isnt even unlocked for me even tho i had a date at her place.
the game hasn't been linear since ep1 when you had to choose between katy and zoe
 

ZzZzZiggy

Member
Dec 30, 2021
143
126
Depends on your choices....my first run on a save got me Paige June Kindra and Reina....:)
For chapter 6
On one single run??? How'd you even manage to pull that off? Had to replay the game from the beginning to get the Paige scene. That took a while.:LOL:

Also, any idea how to unlock the June scene for this ch? DO I need to avoid other girls or do something specific beforehand?
 

ZzZzZiggy

Member
Dec 30, 2021
143
126
This bug happened to me on my first run, but then on my run last night in the exact same scene it didn't. Not really sure why that is. Also I think the scenes are June, Reina, Paige, Kindra and Katy I think, though I haven't got that one yet as Reina's date blocks Katy's scene it seems.
Any tips on getting the June scene? I tried with both of her previous scenes unlocked but no dice :unsure:
 
4.70 star(s) 408 Votes