partanen

Selectively Active Member
Uploader
Donor
Sep 13, 2017
2,012
13,720
The front page says version 0.1.7.2 is available, but when I use one of the download options I still get version 0.1.7.0. Is it only available for patreon members currently?
No, Darkhound's Patreon is open to all. You need to Patch it to 0.17.2. Link available in OP (= first Post of Thread) and in Darkhound's Patreon page...
 
  • Like
Reactions: imzahai

jikorde

Member
Mar 4, 2018
260
254
It is right next to the unicorn corral. Perhaps if you do a search you'll find where a kind individual has posted multiple saves for multiple scenes. But if you expect to find a save which picks up from where the last update left off, there is no such animal.
I always include a full save from the previous update along with the current, just so people can pursue the new content or so they can see what has been added/changed. It was a common enough of a request on forums that I do it for any game that updates over time.
 
  • Like
Reactions: Bantry and witteb

Seegurke458

Member
Sep 23, 2017
237
74
how am i supposed to do the weightlifting scene with the girls the game always says im too weak but my strength is at maximum
 

Monsieur X

Engaged Member
May 26, 2018
2,477
3,295
its not a flashing image its a sexting image
It's from after a night visit to Yvette if I remember, she sext it, I am the one who requested the scene to be added on the phone.
I just don't remember if the flashing is random or triggered.
 
Last edited:

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,810
8,503
darkhound1

Sorry I haven't been around, but I've been busy. Here are my edits for dialogue and descriptions which I've found along with some odd occurences. Hope this helps. I've included some style change suggestions. Use them if you like. I'm interested to know what you think.

You don't have permission to view the spoiler content. Log in or register now.
Thanks for the corrections. I've added most of them :)
I've also change the schedule calendar and added times until 02:00. Also the skip from today to tomorrow (concerning the calendar) will happen at 02:00 and no longer at 24:00.
This will solve the problem you've had with Renée.
 

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,810
8,503
Decrease your strength by 1 or 2 and try training again to increase it normally.
This doesn't help, it doesn't matter at all how you got your strength, 10 is 10 :)

How did you 'cheat' your strength? Did you use the Mod or Console Codes?
This also doesn't matter in any way. 10 is still 10 :)

This is the code, it's pretty simple:
Python:
label player_strength_check(check_level)
$ check_ok = False
if player.get_strength() > check_level:
    $ check_ok = True
elif player.get_strength() == check_level:
    $ rand_int = renpy.random.randint(1, 2)
    if rand_int==1:
        $ check_ok = True
elif player.get_strength() == check_level - 1:
    $ rand_int = renpy.random.randint(1, 4)
    if rand_int==1:
        $ check_ok = True
return check_ok
If your strength is > than girl' strength - 1 --> always succeed
If your strength is same as girl's strength - 1 --> 50% chance of success
If your strength is same as girl's strength - 2 --> 25% chance of success
 
Last edited:

Seegurke458

Member
Sep 23, 2017
237
74
This doesn't help, it doesn't matter at all how you got your strength, 10 is 10 :)


This also doesn't matter in any way. 10 is still 10 :)

This is the code, it's pretty simple:
Python:
label player_strength_check(check_level)
$ check_ok = False
if player.get_strength() > check_level:
    $ check_ok = True
elif player.get_strength() == check_level:
    $ rand_int = renpy.random.randint(1, 2)
    if rand_int==1:
        $ check_ok = True
elif player.get_strength() == check_level - 1:
    $ rand_int = renpy.random.randint(1, 4)
    if rand_int==1:
        $ check_ok = True
return check_ok
If your strength is > than girl' strength - 1 --> always succeed
If your strength is same as girl's strength - 1 --> 50% chance of success
If your strength is same as girl's strength - 2 --> 25% chance of success
what am i supposed to do with this code?
 
4.10 star(s) 219 Votes