Laritas

Member
Jul 10, 2023
182
344
I've been playing the game for several hundred hours. But I've never had an event like this. Normally the girls are sucking in the morning.

But apparently Emma wanted to and Laura wasn't ready yet.
You don't have permission to view the spoiler content. Log in or register now.
It's fascinating how different the reactions are. The others are either already too far or not yet far enough in the relationship.
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.
I wanted to see if the reactions are different when I have someone else besides Emma with me.
But the girls obviously only have the problem with Emma. When I go to the girls with Gwen instead, there are tongue acrobatics in the morning even though none of them have been interactive with Gwen before and we haven't had any more intimate acts apart from kissing.

I'm doing a slow game right now and only have Gwen and Emma at the level for morning acrobatic..
 
  • Haha
Reactions: leathermax

JaSteel

Member
Oct 14, 2020
221
314
I wanted to see if the reactions are different when I have someone else besides Emma with me.
But the girls obviously only have the problem with Emma. When I go to the girls with Gwen instead, there are tongue acrobatics in the morning even though none of them have been interactive with Gwen before and we haven't had any more intimate acts apart from kissing.

I'm doing a slow game right now and only have Gwen and Emma at the level for morning acrobatic..
The interactions depend on each girl's relation to everyone involved: how much they each like you, and how much they like each other. Sort of like showering with the girls and one does something with you and the other may or may not like it.

This is stuff that can only happen early in the game, and another reason I think it is dumb when someone asks for a "full save".
 

leathermax

Well-Known Member
Feb 10, 2019
1,217
3,429
Btw, fellas. Does anyone know what the cheat to add swimsuits to the inventory is?
Since Prime took the ability to buy them from the room and never put it back, I was thinking of an alternative, but I don't know how to check the ID of items or shit like that.
 

sleepingkirby

Active Member
Aug 8, 2017
512
748
Btw, fellas. Does anyone know what the cheat to add swimsuits to the inventory is?
Since Prime took the ability to buy them from the room and never put it back, I was thinking of an alternative, but I don't know how to check the ID of items or shit like that.
Editting this post as I've found an easier/better list:
Code:
./screens.rpy:1064:        showif "Rogue nighty" in Player.Inventory:
./screens.rpy:1066:        showif "Rogue lace bra" in Player.Inventory:
./screens.rpy:1068:        showif "Rogue lace panties" in Player.Inventory:
./screens.rpy:1070:        showif "Rogue bikini top" in Player.Inventory:
./screens.rpy:1072:        showif "Rogue bikini bottoms" in Player.Inventory:
./screens.rpy:1075:        showif "Kitty lace bra" in Player.Inventory:
./screens.rpy:1077:        showif "Kitty lace panties" in Player.Inventory:
./screens.rpy:1079:        showif "Kitty knee stockings" in Player.Inventory:
./screens.rpy:1081:        showif "Kitty pantyhose" in Player.Inventory:
./screens.rpy:1083:        showif "Kitty bikini top" in Player.Inventory:
./screens.rpy:1085:        showif "Kitty bikini bottoms" in Player.Inventory:
./screens.rpy:1087:        showif "Kitty blue skirt" in Player.Inventory:
./screens.rpy:1090:        showif "Emma lace bra" in Player.Inventory:
./screens.rpy:1092:        showif "Emma lace panties" in Player.Inventory:
./screens.rpy:1094:        showif "Emma pantyhose" in Player.Inventory:
./screens.rpy:1096:        showif "Emma bikini top" in Player.Inventory:
./screens.rpy:1098:        showif "Emma bikini bottoms" in Player.Inventory:
./screens.rpy:1101:        showif "Laura corset" in Player.Inventory:
./screens.rpy:1103:        showif "Laura lace corset" in Player.Inventory:
./screens.rpy:1105:        showif "Laura lace panties" in Player.Inventory:
./screens.rpy:1107:        showif "Laura bikini top" in Player.Inventory:
./screens.rpy:1109:        showif "Laura bikini bottoms" in Player.Inventory:
./screens.rpy:1112:        showif "Jean corset" in Player.Inventory:
./screens.rpy:1114:        showif "Jean lace corset" in Player.Inventory:
./screens.rpy:1116:        showif "Jean lace bra" in Player.Inventory:
./screens.rpy:1118:        showif "Jean lace panties" in Player.Inventory:
./screens.rpy:1120:        showif "Jean bikini top" in Player.Inventory:
./screens.rpy:1122:        showif "Jean bikini bottoms" in Player.Inventory:
./screens.rpy:1125:        showif "Storm lace bra" in Player.Inventory:
./screens.rpy:1127:        showif "Storm lace panties" in Player.Inventory:
./screens.rpy:1129:        showif "Storm pantyhose" in Player.Inventory:
./screens.rpy:1131:        showif "Storm bikini top" in Player.Inventory:
./screens.rpy:1133:        showif "Storm bikini bottoms" in Player.Inventory:
./screens.rpy:1136:        showif "Jubes lace bra" in Player.Inventory:
./screens.rpy:1138:        showif "Jubes lace panties" in Player.Inventory:
./screens.rpy:1140:        showif "Jubes bikini top" in Player.Inventory:
./screens.rpy:1142:        showif "Jubes bikini bottoms" in Player.Inventory:
./screens.rpy:1147:        showif "Gwen lace bra" in Player.Inventory:
./screens.rpy:1149:        showif "Gwen lace panties" in Player.Inventory:
./screens.rpy:1151:        showif "Gwen bikini top" in Player.Inventory:
./screens.rpy:1153:        showif "Gwen bikini bottoms" in Player.Inventory:
./screens.rpy:1156:        showif "Betsy swimsuit" in Player.Inventory:
./screens.rpy:1161:        showif "Doreen lace bra" in Player.Inventory:
./screens.rpy:1163:        showif "Doreen lace panties" in Player.Inventory:
./screens.rpy:1165:        showif "Doreen bikini top" in Player.Inventory:
./screens.rpy:1167:        showif "Doreen bikini bottoms" in Player.Inventory:
So just do:

Player.Inventory.append("name of item here")
 
Last edited:

leathermax

Well-Known Member
Feb 10, 2019
1,217
3,429
Editting this post as I've found an easier/better list:
Code:
./screens.rpy:1064:        showif "Rogue nighty" in Player.Inventory:
./screens.rpy:1066:        showif "Rogue lace bra" in Player.Inventory:
./screens.rpy:1068:        showif "Rogue lace panties" in Player.Inventory:
./screens.rpy:1070:        showif "Rogue bikini top" in Player.Inventory:
./screens.rpy:1072:        showif "Rogue bikini bottoms" in Player.Inventory:
./screens.rpy:1075:        showif "Kitty lace bra" in Player.Inventory:
./screens.rpy:1077:        showif "Kitty lace panties" in Player.Inventory:
./screens.rpy:1079:        showif "Kitty knee stockings" in Player.Inventory:
./screens.rpy:1081:        showif "Kitty pantyhose" in Player.Inventory:
./screens.rpy:1083:        showif "Kitty bikini top" in Player.Inventory:
./screens.rpy:1085:        showif "Kitty bikini bottoms" in Player.Inventory:
./screens.rpy:1087:        showif "Kitty blue skirt" in Player.Inventory:
./screens.rpy:1090:        showif "Emma lace bra" in Player.Inventory:
./screens.rpy:1092:        showif "Emma lace panties" in Player.Inventory:
./screens.rpy:1094:        showif "Emma pantyhose" in Player.Inventory:
./screens.rpy:1096:        showif "Emma bikini top" in Player.Inventory:
./screens.rpy:1098:        showif "Emma bikini bottoms" in Player.Inventory:
./screens.rpy:1101:        showif "Laura corset" in Player.Inventory:
./screens.rpy:1103:        showif "Laura lace corset" in Player.Inventory:
./screens.rpy:1105:        showif "Laura lace panties" in Player.Inventory:
./screens.rpy:1107:        showif "Laura bikini top" in Player.Inventory:
./screens.rpy:1109:        showif "Laura bikini bottoms" in Player.Inventory:
./screens.rpy:1112:        showif "Jean corset" in Player.Inventory:
./screens.rpy:1114:        showif "Jean lace corset" in Player.Inventory:
./screens.rpy:1116:        showif "Jean lace bra" in Player.Inventory:
./screens.rpy:1118:        showif "Jean lace panties" in Player.Inventory:
./screens.rpy:1120:        showif "Jean bikini top" in Player.Inventory:
./screens.rpy:1122:        showif "Jean bikini bottoms" in Player.Inventory:
./screens.rpy:1125:        showif "Storm lace bra" in Player.Inventory:
./screens.rpy:1127:        showif "Storm lace panties" in Player.Inventory:
./screens.rpy:1129:        showif "Storm pantyhose" in Player.Inventory:
./screens.rpy:1131:        showif "Storm bikini top" in Player.Inventory:
./screens.rpy:1133:        showif "Storm bikini bottoms" in Player.Inventory:
./screens.rpy:1136:        showif "Jubes lace bra" in Player.Inventory:
./screens.rpy:1138:        showif "Jubes lace panties" in Player.Inventory:
./screens.rpy:1140:        showif "Jubes bikini top" in Player.Inventory:
./screens.rpy:1142:        showif "Jubes bikini bottoms" in Player.Inventory:
./screens.rpy:1147:        showif "Gwen lace bra" in Player.Inventory:
./screens.rpy:1149:        showif "Gwen lace panties" in Player.Inventory:
./screens.rpy:1151:        showif "Gwen bikini top" in Player.Inventory:
./screens.rpy:1153:        showif "Gwen bikini bottoms" in Player.Inventory:
./screens.rpy:1156:        showif "Betsy swimsuit" in Player.Inventory:
./screens.rpy:1161:        showif "Doreen lace bra" in Player.Inventory:
./screens.rpy:1163:        showif "Doreen lace panties" in Player.Inventory:
./screens.rpy:1165:        showif "Doreen bikini top" in Player.Inventory:
./screens.rpy:1167:        showif "Doreen bikini bottoms" in Player.Inventory:
So just do:

Player.Inventory.append("name of item here")
Thanks. Adding them to the characters' inventory instead of my own is equally useful. I wanted a way of getting the bikinis without having to wait for them to have high enough stats that they'd accept coming along to try them out at the mall.
 

sleepingkirby

Active Member
Aug 8, 2017
512
748
Thanks. Adding them to the characters' inventory instead of my own is equally useful. I wanted a way of getting the bikinis without having to wait for them to have high enough stats that they'd accept coming along to try them out at the mall.
Shouldn't have doubted myself. >.<. I'll repost that list.

Code:
./Mall.rpy:831:                                                            $ Girl.Inventory.append("bikini top")
./Mall.rpy:877:                                                            $ Girl.Inventory.append("bikini bottoms")
./Mall.rpy:917:                                                            $ Girl.Inventory.append("swimsuit")
./Mall.rpy:942:                                                            $ Girl.Inventory.append("blue skirt")
./Mall.rpy:1753:                                                            $ Girl.Inventory.append("lace bra")
./Mall.rpy:1793:                                                            $ Girl.Inventory.append("corset")
./Mall.rpy:1819:                                                            $ Girl.Inventory.append("lace corset")
./Mall.rpy:1842:                                                            $ Girl.Inventory.append("lace panties")
./Mall.rpy:1887:                                                            $ Girl.Inventory.append("tiger panties")
./Mall.rpy:1906:                                                            $ Girl.Inventory.append("mesh pants")
./Mall.rpy:1929:                                                            $ Girl.Inventory.append("stockings and garterbelt")
./Mall.rpy:1959:                                                            $ Girl.Inventory.append("knee")
./Mall.rpy:1982:                                                            $ Girl.Inventory.append("socks")
./Mall.rpy:2005:                                                            $ Girl.Inventory.append("pantyhose")
./Mall.rpy:2028:                                                            $ Girl.Inventory.append("nighty")
Replace "Girl" with "RogueX" or "StormX", etc. Double check to make sure it exists as not all characters have all these clothes. Also keep in mind that adding them this way will skip out on some stat ups for that character.

i.e.:
Code:
                                                    if "lace bra" in Cart:
                                                            #if you successsfully got it for her. . .
                                                            $ Cart.remove("lace bra")
                                                            $ Girl.FaceChange("bemused",1)
                                                            $ Girl.Inventory.append("lace bra")
                                                            $ Player.AddWord(1,"purchased") #recent
                                                            $ Girl.Statup("Love", 200, 25)
                                                            $ Girl.Statup("Obed", 200, 20)
                                                            $ Girl.Statup("Inbt", 200, 20)
                                                            if Girl is RogueX:
                                                                    ch_r "I don't know that I'd wear this out, but maybe in private."
                                                            elif Girl is KittyX:
                                                                ch_k "At least you appreciate what I've got."
 
  • Like
Reactions: leathermax

Hawkbit13

New Member
Jun 21, 2020
5
3
Is it possible to come across two girls doing stuff together? I don't mean threesome actions or stuff where your character is involved, I mean genuinely stumbling across a make-out or lesbian session. I've heard some people say it is, but i've never seen it myself.
 
  • Like
Reactions: Exocrine

Laritas

Member
Jul 10, 2023
182
344
Is it possible to come across two girls doing stuff together? I don't mean threesome actions or stuff where your character is involved, I mean genuinely stumbling across a make-out or lesbian session. I've heard some people say it is, but i've never seen it myself.
If the girls get on (very) well with each other, you might get a call like this from time to time:
You don't have permission to view the spoiler content. Log in or register now.
Then you can join in or refuse.
(if you don't refuse they will always notice you when you come into the room).

If you refuse but then go anyway, you might see something like this:
You don't have permission to view the spoiler content. Log in or register now.
 

imzahai

Active Member
Apr 19, 2019
892
1,227
If the girls get on (very) well with each other, you might get a call like this from time to time:
You don't have permission to view the spoiler content. Log in or register now.
Then you can join in or refuse.
(if you don't refuse they will always notice you when you come into the room).

If you refuse but then go anyway, you might see something like this:
You don't have permission to view the spoiler content. Log in or register now.
true, but if they 'notice' you just start fapping and [for me] 100% chance of a threesome
 

Laritas

Member
Jul 10, 2023
182
344
true, but if they 'notice' you just start fapping and [for me] 100% chance of a threesome
With a 100 % chance, of course. After all, THIS is an invitation to a threesome. Whether you go there directly or secretly. They want to be a sandwich with you in between.
 

FacelessVixen

Formerly 'PrincessBitchJean'
Aug 25, 2017
615
2,163
If the girls get on (very) well with each other, you might get a call like this from time to time:
You don't have permission to view the spoiler content. Log in or register now.
Then you can join in or refuse.
(if you don't refuse they will always notice you when you come into the room).

If you refuse but then go anyway, you might see something like this:
You don't have permission to view the spoiler content. Log in or register now.
*imagines the amount of hours it would take to trigger this event with literally any girl and Jean (without cheating)*

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

Laritas

Member
Jul 10, 2023
182
344
*imagines the amount of hours it would take to trigger this event with literally any girl and Jean (without cheating)*

You don't have permission to view the spoiler content. Log in or register now.
This is also quite easy without cheating (although easy is relative).
You have to be caught with Emma or Jean. The one you get caught with needs higher values of love and obedience to carry out the plan and then choose this option.
This saves a lot of grind to get the girls used to each other. Especially with Jean it will be easier. None of the others like her (except for Gwen).
You don't have permission to view the spoiler content. Log in or register now.
 

LEPS069

Newbie
May 15, 2023
36
4
Pessoal, algum de vocês sabe como me ajudar com o problema de bug que estou tendo no jogo? Sempre que vou em um encontro em um lugar que não seja o shopping, ele fica dando "IndexError: list index out of range" E quando eu tenho que dormir com duas meninas e acordar no dia seguinte, depois de fazer coisas libidinosas com elas, e eu tenho que falar se eu gostava de dormir com ela e tal, quando é a vez da segunda menina falar sobre o mesmo problema.

1715139108811.png
 

imzahai

Active Member
Apr 19, 2019
892
1,227
Pessoal, algum de vocês sabe como me ajudar com o problema de bug que estou tendo no jogo? Sempre que vou em um encontro em um lugar que não seja o shopping, ele fica dando "IndexError: list index out of range" E quando eu tenho que dormir com duas meninas e acordar no dia seguinte, depois de fazer coisas libidinosas com elas, e eu tenho que falar se eu gostava de dormir com ela e tal, quando é a vez da segunda menina falar sobre o mesmo problema.

View attachment 3614144
no idea what you typed, but try:
1 delete your install, and the downloaded copy,
re download 1.51f if you can run programs in english, if not use the unofficial translation, and goto its thread for support if needed.
extract and run.
if it still doesnt work delete the file labeled "persistent" in the roguelike saves folder and in the game's folder
 

sleepingkirby

Active Member
Aug 8, 2017
512
748
Pessoal, algum de vocês sabe como me ajudar com o problema de bug que estou tendo no jogo? Sempre que vou em um encontro em um lugar que não seja o shopping, ele fica dando "IndexError: list index out of range" E quando eu tenho que dormir com duas meninas e acordar no dia seguinte, depois de fazer coisas libidinosas com elas, e eu tenho que falar se eu gostava de dormir com ela e tal, quando é a vez da segunda menina falar sobre o mesmo problema.

View attachment 3614144
Forgive me as my Spanish is horrible at best and I know nothing of Portuguese. But it looks like you're using a bad translation/automatic translation. The variable/index "Nome" does NOT exist in the original game code at all. But, it would if someone tried to translate all instances of "Name" into "Nome". But you can't translate code like that. This looks like a problem with your translated version and you should take it up with the person that translated it.
 

primavera9925

Member
Sep 28, 2020
377
874
Translating this to heavily gendered languages sounds like hell, you'd have to split almost the entire script for fem-Zero lines.
 
4.40 star(s) 148 Votes