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