despiteful

COED Conquest Dev
Game Developer
Jun 12, 2020
330
623
Yep already found the ones in the Alex route, no idea how they managed to hide there haha
 
  • Like
Reactions: caju

Star Dude

Newbie
Jan 13, 2019
34
28
I keep getting errors whenever I deal with the strippers, I've finished everything else. Tried downloading again but still the error. Is it from a bad save or something else?

You don't have permission to view the spoiler content. Log in or register now.
 

despiteful

COED Conquest Dev
Game Developer
Jun 12, 2020
330
623
I keep getting errors whenever I deal with the strippers, I've finished everything else. Tried downloading again but still the error. Is it from a bad save or something else?

You don't have permission to view the spoiler content. Log in or register now.
Interesting error

Was that your first visit there after unlocking?
Maybe could you provide a save file for easy testing?
 

Star Dude

Newbie
Jan 13, 2019
34
28
Interesting error

Was that your first visit there after unlocking?
Maybe could you provide a save file for easy testing?
Nope, it was unlocked for a while and I just kept on doing everything else.
I keep getting errors when in the lounge and chose the Manage, Play and Hire options. I think I got a screen with the 3 strippers on it once but wasn't able to play through that sequence and got an error.

Save 6-3 is everything done but get the Lounge errors
Save 6-5 is when I just went back to an earlier save and just unlocked the Lounge and Alex and finished her first step and starting there, got errors with those same options in the lounge.
 
  • Like
Reactions: despiteful

despiteful

COED Conquest Dev
Game Developer
Jun 12, 2020
330
623
Nope, it was unlocked for a while and I just kept on doing everything else.
I keep getting errors when in the lounge and chose the Manage, Play and Hire options. I think I got a screen with the 3 strippers on it once but wasn't able to play through that sequence and got an error.

Save 6-3 is everything done but get the Lounge errors
Save 6-5 is when I just went back to an earlier save and just unlocked the Lounge and Alex and finished her first step and starting there, got errors with those same options in the lounge.
Thanks i will have a look:)

Did you use any additional cheats other than what is in the game directly?

Which version did you start your saves on?:)
 

Star Dude

Newbie
Jan 13, 2019
34
28
Thanks i will have a look:)

Did you use any additional cheats other than what is in the game directly?

Which version did you start your saves on?:)
I don't think I used any other cheats and I think I restarted with 0.4 after skipping 0.3 maybe? but I didn't unlock the lounge until playing 0.5.
 
  • Like
Reactions: despiteful

despiteful

COED Conquest Dev
Game Developer
Jun 12, 2020
330
623
I don't think I used any other cheats and I think I restarted with 0.4 after skipping 0.3 maybe? but I didn't unlock the lounge until playing 0.5.
Found and fixed it for 0.6, I hope I don't have more of those hidden gems...^^

Is that fine with you? If you dont want to wait, you can try:

EDIT: What follows is useless, just use the file I posted below

In the file custom_labels_sideevent_init.rpy

Look for if not hasattr(store,"sideeventstripclubgirls"):

and add if not hasattr(sideeventstripclubgirls,"candy"):

Should look like the code below then :)
(You might even be able to simple copy paste it at the end of the file before the return, having that code fragment multiple times won't hurt, since it only does something if nothing is in the save )


Code:
        if not hasattr(store,"sideeventstripclubgirls"):
            sideeventstripclubgirls = Sideevent("Stripclub Girls!","stripclubgirls_cover",0,False)
        if not hasattr(sideeventstripclubgirls,"candy"):
            sideeventstripclubgirls.maxStrippers = 1
            sideeventstripclubgirls.currentStrippers = 0
            sideeventstripclubgirls.candy = Sideeventheroine()
            sideeventstripclubgirls.candy.firstStrip = True
            sideeventstripclubgirls.candy.firstMassage = True
            sideeventstripclubgirls.candy.firstOutcall = True
            sideeventstripclubgirls.candy.firstHaremOutcall = True
            sideeventstripclubgirls.roxy = Sideeventheroine()
            sideeventstripclubgirls.roxy.firstStrip = True
            sideeventstripclubgirls.roxy.firstMassage = True
            sideeventstripclubgirls.roxy.firstOutcall = True
            sideeventstripclubgirls.roxy.firstHaremStrip = True
            sideeventstripclubgirls.cinnamon = Sideeventheroine()
            sideeventstripclubgirls.cinnamon.firstStrip = True
            sideeventstripclubgirls.cinnamon.firstMassage = True
            sideeventstripclubgirls.cinnamon.firstOutcall = True
            sideeventstripclubgirls.cinnamon.firstHaremMassage = True
            sideeventstripclubgirls.alex = Sideeventheroine()
            sideeventstripclubgirls.alex.firstStrip = True
            sideeventstripclubgirls.alex.firstMassage = True
            sideeventstripclubgirls.alex.firstOutcall = True
 
3.30 star(s) 19 Votes