shooter7999

New Member
Jul 6, 2017
8
4
Well there's a couple ways. Try going into your phone. Select this app.

Frame App.png Frame App.png That will take you directly to the App and let you choose from available pictures. Re-size the frame as you wish and then select which location you want. L, M, R.


Or open your phone again and select the Character App.

Character App.png Character App.png Now pick a girl, any girl and open one of the completed achievements. You should see an icon in the lower right of the picture like this:


Frame icon.PNG Frame icon.PNG Select it and position/re-size the frame around the content you want and then select a location.
Second option worked, thanks mate.
 
  • Like
Reactions: partanen

Bantry

Forum Fanatic
Oct 24, 2017
5,401
13,443
I'm confused. Why does everyone want/need to change the resolution? I could see if you need a specific 'Window' size on your screen, but why not just choose 'Fullscreen'? Still not filling the screen? Chances are it is your display adapter's fault not the game. There are enough tutorials out there for various adapters and their drivers to tweak the resolution and screen size. But, hey that's just me.
 

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,842
8,640
I'm confused. Why does everyone want/need to change the resolution? I could see if you need a specific 'Window' size on your screen, but why not just choose 'Fullscreen'? Still not filling the screen? Chances are it is your display adapter's fault not the game. There are enough tutorials out there for various adapters and their drivers to tweak the resolution and screen size. But, hey that's just me.
On a really big screen, 27", 30" or even bigger, using full screen mode looks horrible. The image resolution of some images is just too small. So using 1920x1080 is a good compromise (at least it is for me).
In any case, I have added the resolution options to be used. They work for me without any problems and for a lot of other people as well. So I'm positive we can get it working for the others as well. But like with all stuff that works on my system, but for whatever reason it doesn't on some others, it will require some try and error before it will work for everyone.
 
Last edited:

Lonewolf007

Active Member
Jul 15, 2018
883
684
to the dev Will you please add the option for the player to stop the lady's' statues from dropping into the options in the menu becouse some of us player's would like to play the game without worrying about the lady's status dropping . One last question If the lady's are not on the island do there statues drop ?
 

Bantry

Forum Fanatic
Oct 24, 2017
5,401
13,443
On a really big screen, 27", 30" or even bigger, using full screen mode looks horrible. The image resolution of some images is just too small. So using 1920x1080 is a good compromise (at least it is for me).
In any case, I have added the resolution options to be used. They work for me without any problems and for a lot of other people as well. So I'm positive we can get it working for the others as well. But like with all stuff that works on my system, but for whatever reason it doesn't on some others, it will require some try and error before it will work for everyone.
I can only speak for myself, but I've open and played the game on three different screens of various sizes. 24", 48" and 55" 4k. I always play in Fullscreen mode, but I have any and all games set to play in 1920x1080 resolution also as I have never found any other resolution to offer such a big difference to matter. Then again, I only play the game for the dialogue.... :ROFLMAO:
 

Bantry

Forum Fanatic
Oct 24, 2017
5,401
13,443
to the dev Will you please add the option for the player to stop the lady's' statues from dropping into the options in the menu becouse some of us player's would like to play the game without worrying about the lady's status dropping . One last question If the lady's are not on the island do there statues drop ?
Just like real life, the girls' attitude (stats) toward the main character drop if you don't pay attention to them. Lust, love, etc.

On the plus side I guess is that if the girl is not on the island her stats don't drop.
 
  • Like
Reactions: partanen

Shocker

Member
Jun 2, 2017
175
211
Love this game!

"Now that is something you don't have to be told twice."

The only piece of constructive criticism I would offer is to add in a feature that automatically adjusts the girls' outfit for scenes if you've reached the required attributes for that scene and clothing. For instance, If you've already got Eva in her skimpy suit and you relax on the beach for her scene on the pier, it'd be nice if the game allowed to trigger it and simply switched her clothing for the scene. Realistically its makes sense, girls tend to change their clothes a lot.
 
Last edited:

sks8256

Member
Feb 4, 2019
182
158
Yesterday I updated the game to the new version but I am not sure what new content has been added to it.The bugs are fixed which is fine.But Amy's quests are still said to be available in next version and its the same for Miriam and Mercedes.Can somebody please tell if there is specifically any new content added for particular girls?
 

Tebix

Member
Sep 3, 2017
218
253
Compiled all known(probably) cheats in one file:


UPD:
found more convenient poker game cheat:
Code:
g_cheats_enabled = 1
Shows the winner in top left before cards are revealed.
g_poker_game.winner = 0
Let's you win the round, but it breaks the above cheat.
 

zapallbugs

Engaged Member
Jul 10, 2018
2,293
2,615
Yesterday I updated the game to the new version but I am not sure what new content has been added to it.The bugs are fixed which is fine.But Amy's quests are still said to be available in next version and its the same for Miriam and Mercedes.Can somebody please tell if there is specifically any new content added for particular girls?
Use the phone, Luke.
 
  • Like
Reactions: Bantry

Annhwi

Newbie
Aug 27, 2018
24
13
Why am I annoyed? I am not annyoed, nor did I act annoyed.
The problem is that everyone seems to think he/she knows something and is mixing everything up, stuff that has absolutely nothing to do with one another.
This is what my preferences screen looks like. You see there are the options to use 1920x1080.
View attachment 487652

I know what I coded and I'm pretty sure it is working for the huge majority, or we would see a lot more complaints, because one thing is for sure in this forum - if something even a tiny little something is not working, there will be complaints.

This is the code that is executed when the game starts:
Python:
init -5 python:
    from time import time
    import datetime
    import os
    if os.name == "nt":
        import ctypes
        g_user32 = ctypes.windll.user32
        g_y_physical_screen = g_user32.GetSystemMetrics(1)
    else:
        g_y_physical_screen = 1200
And this is the code that defines the preferences:
Python:
                    if not renpy.loadable("use_fixed_resolution_720.txt"):
                        vbox:
                            style_prefix "check"
                            label _("Resolution")
                            textbutton _("manual resize") action SetField(persistent, 'resolution', 1000)
                            textbutton _("1280x720") action SetField(persistent, 'resolution', 1280)
                            textbutton _("1600x900") action SetField(persistent, 'resolution', 1600)
                            if g_y_physical_screen >= 1200:
                                textbutton _("1920x1080") action SetField(persistent, 'resolution', 1920)
                            if g_y_physical_screen >= 1600:
                                textbutton _("2560x1440") action SetField(persistent, 'resolution', 2560)
So if you get 1440 when you manually execute the command after the game has been loaded, maybe it starts on your secondary screen which has lower settings?
Please check the variable g_y_physical_screen in the console.
Just type:
g_y_physical_screen
If you also get 1440 then I have no idea why it doesn't work. But probably you get 1080 or lower.
I only use one screen, so I cannot really test this.
If g_y_physical_screen is not 1440, you can try this:
Open the console and type:
g_y_physical_screen = 1440
After that, go to the preferences. You should see the additonal option 1920x1080 now.
If for whatever reason windows returns the resolution from the wrong monitor when the game starts, I'm pretty sure something can be found to work around that. But I wasn't aware of that problem.

EDIT: If you have the problem that higher resolutions are not available, please try the files attached in the zip. Copy them to the "game" folder and replace the two existing files. The logic has been changed, so that every time the preferences are opened, the game will again get the native resolution of your screen (instead of only once when the game is started). Please let me know if this works for you.
A very clear and succinct answer if ever I saw one...(thank you for that) Strangely enough, it turns out those 2 variables are coming up differently on my system (1440 for ctypes... and 1152 for g_y_physical_screen both taken after the program is up and running)

will try the zip files and let you know if anything changes.

Edit: I believe that got it, as now the 1080 option is available (exactly as it is intended based on the logic of the code above)
(strangely enough, the values do not change in the console for ctypes and g_y_physical_screen ... would seem to be an issue with multiple monitors with differing native resolutions on my end imho.)
Still ... many thanks for looking into this.
 
Last edited:
  • Like
Reactions: darkhound1
Oct 29, 2018
36
48
any one have a compressed version ... ?
Darkhound has been implementing webp compression with a number of updates along the way allowing for the game to stay at a smaller file size over time. It's kinda already mostly compressed. Some member may still yet put up a compressed version for the rest of the legacy content though.
 
4.00 star(s) 233 Votes