Mar 17, 2025
24
21
3
halfway? get out of here, after pool party ends and next morning.
I mean there were still some of that in the early updates,like you could get different scenes with Elizabeth depending on how much lust points aswell as you needing affection points in the drinking scenes,but yeah it doesn't have much of that anymore
 

f96zonetrooper

Engaged Member
Dec 21, 2018
2,948
2,837
350
It seems that the "spanish" posts were deleted and so were my detailed answers which included a bug description.

So I repeat the bug description :

Once Sarah is in jail, mc can get the quest to look for her gun.
Hint : "Check Sarah s drawer (Everyday - Morning Afternoon - Sarah s Bedroom)"

If mc already checked the drawer before getting the quest, the flag for the hint will never be cleared and this hint will stay there forever. In this case just ignore it.

To have the Hint removed as intended, once Sarah is in jail do not check her drawer until you have the quest incl. hint to do so ...

Anyway ... this quest to look for the gun currently leads nowhere, so don't worry ...

The dialog before the hint is removed :
Code:
''Fuck! The gun is not here...''
''This doesn't make sense. Someone must have taken it, but who and why?''
''Neither Kate nor Monique visited Sarah in jail, so they couldn't have known about the gun. Or did they?!''
''Maybe Aiko saw this as an opportunity for revenge... but accusing Aiko without evidence would be reckless.''
''Hmmmmm! I can't confront any of them...''
$ check_sarah_drawer_sarah_in_jail = 1
$ h_check_sarah_drawer_sarah_in_jail = 0
h_check_sarah_drawer_sarah_in_jail disables the flag for the hint. (1 active, 0 disabled)
check_sarah_drawer_sarah_in_jail is the flag for this dialog so that it is shown only once.
 
Last edited:

cxx

Message Maestro
Nov 14, 2017
76,963
39,699
1,519
well this is english only forum and mods don't have time to google translate every non-english post so those get deleted unless translation is provided.
 

f96zonetrooper

Engaged Member
Dec 21, 2018
2,948
2,837
350
well this is english only forum and mods don't have time to google translate every non-english post so those get deleted unless translation is provided.
No offense :
My english posts got deleted because they answered/quoted a spanish post which I additionally had translated into english and answered in english.
 
Last edited:

cxx

Message Maestro
Nov 14, 2017
76,963
39,699
1,519
No offense :
My english posts got deleted because they answered/quoted a spanish post which I additionally had translated into english and answered in english.
none taken but per rules orig. poster needs to provide translation not 3rd party. mods are strict in those and many other cases.
 

cxx

Message Maestro
Nov 14, 2017
76,963
39,699
1,519
dont remember a scene where she gets attacked is it a new one
bit old (25 or 26) and she and mc are going back home in the evening/at night and they get attacked and no don't have save before that. not rly ntr since if you were on good path you'd rescue her.
 

f96zonetrooper

Engaged Member
Dec 21, 2018
2,948
2,837
350
dont remember a scene where she gets attacked is it a new one
After Sarah gets jailed, you can talk to Monique at the Clinique and accompany her on a jogging exercise through the park. There she is attacked. This event is called "The Park" in the walkthrough.
 

XBrad93X

Member
Dec 9, 2020
154
135
61
The heat rises in Episode 5 as Monique, Kate, Kelly, the MC, and Monty spend their first full night on the island—and things get steamy fast.

With the moon high and the firelight flickering, Monique pulls the MC into a game that’s anything but innocent. Touches linger longer, glances turn into invitations, and before long, the line between play and pleasure is deliciously blurred.

But not everyone’s in the mood to stay. Monty’s eyes are on the horizon more than on the women. Whispers, subtle glances, and a growing distance hint that he might be planning something…

As passions ignite and secrets brew, Episode 5: Ride the Jet delivers a night you won’t forget.





New game?
The f*ck is Monty now ?

Uff ... dev started making this stuff again instead of focusing on the real game (the product people pay for) which is all but complete or even acceptable right now ...
 

cxx

Message Maestro
Nov 14, 2017
76,963
39,699
1,519
The f*ck is Monty now ?

Uff ... dev started making this stuff again instead of focusing on the real game (the product people pay for) which is all but complete or even acceptable right now ...
sideproject and those have own thread.
 

yourmomma

Well-Known Member
Apr 4, 2018
1,323
3,182
428
The f*ck is Monty now ?

Uff ... dev started making this stuff again instead of focusing on the real game (the product people pay for) which is all but complete or even acceptable right now ...
The side stuff is actually better than the game imo.
It got me to support him for a while.
 
  • Like
Reactions: zergfeel

srteare

Newbie
Apr 3, 2020
37
4
173
v0.28
I started a new game and I get the same Error : AttributeError: 'MyGallery' object has no attribute 'Add'"

I am not a Python expert but it seems that it is caused by kind of a "preliminary" (empty, default) class definition or some leftover code from the old gallery implementation ????
Code:
    class MyGallery:
        pass
"Add" in Python is used to add elements to a set ... however there is no code in the script that "class MyGallery" is derived from a set or similar data type.


After the pool party the script tries to "add" lots of items to a gallery object of this class :
Code:
    if add_phone_gallery < 2:
        $ gallery = MyGallery()
        $ gallery.Add(1)
        $ gallery.Add(2)
        $ gallery.Add(3)
        $ gallery.Add(4)
        $ gallery.Add(5)
        $ gallery.Add(6)
        $ gallery.Add(7)
        $ gallery.Add(8)
        $ gallery.Add(9)
        $ gallery.Add(10)
        $ gallery.Add(11)
        $ gallery.Add(12)
        $ gallery.Add(13)
        $ gallery.Add(14)
        $ gallery.Add(15)
        $ gallery.Add(16)
        $ gallery.Add(17)
        $ gallery.Add(18)
        $ gallery.Add(19)
        $ gallery.Add(20)
        $ gallery.Add(21)
        $ gallery.Add(22)
        $ gallery.Add(23)
        $ gallery.Add(24)
        $ phone = Phone()
        $ phone.AddContact("Sarah")
        $ phone.AddContact("Monique")
        $ phone.AddContact("Kate")
        $ phone.AddContact("Elizabeth")
        $ phone.AddContact("Trevor")
        $ showPhoneButton = True
        $ add_phone_gallery = 2
At the end of that block, the "add_phone_gallery"-variable is set to 2, so these statements should not be called again and a similar block in another script file should be skipped right away.

You can ignore all the 24 Errors thrown by all these faulty "Add"-statements and try to continue the game. It should happen only once per playthrough. The gallery is working for me.


Here is a version of the script where I commented ('#') all the "gallery.Add"-statements. It should throw no error.
Use Right Mouse Button + "Save target as ..." option for download.
Place it in the game's "/game" folder.

In case you want to remove it, remove script.rpy and script.rpyc from the folder and the game should use the original script.rpy in archive.rpa again.

Edit :
Additionally fixed the bug that prevented Gallery Scene 9 to unlock.
 
2.10 star(s) 142 Votes