lf2mr

Newbie
Sep 7, 2019
86
52
I raised the loveScore value to 20 at the start for convenience, which may have allowed me to choose more 'idiotic' options (i.e. more porn) for Amy, which in turn may have caused the idiocy value to go over 5, however, that doesn't change the fact that it's a leaky code with an actual error in it. Not relying on assumptions is a good programming practice.
I've already looked through the code. The variable "idiocy" starts with a value of 5, after which there are 3 places in the code where this variable changes, in one of them it only decreases, and in the other two it can both decrease and increase. As a result, the variable can take values from 2 to 7. So the corrections you suggested are correct. But since the value of this variable cannot be lower than 2, then it could be done like this:
Python:
    if idiocy==2:
        $idiocyFactor=30
    elif idiocy==3:
        $idiocyFactor=25
    elif idiocy==4:
        $idiocyFactor=20
    elif idiocy==5:
        $idiocyFactor=15
    else:
        $idiocyFactor=10
 

Tanzie

Member
Mar 10, 2019
254
456
I've already looked through the code. The variable "idiocy" starts with a value of 5, after which there are 3 places in the code where this variable changes, in one of them it only decreases, and in the other two it can both decrease and increase. As a result, the variable can take values from 2 to 7. So the corrections you suggested are correct. But since the value of this variable cannot be lower than 2, then it could be done like this:
Python:
    if idiocy==2:
        $idiocyFactor=30
    elif idiocy==3:
        $idiocyFactor=25
    elif idiocy==4:
        $idiocyFactor=20
    elif idiocy==5:
        $idiocyFactor=15
    else:
        $idiocyFactor=10
Yes, the idiocy value starts at 5. If you don't tell Dave that his "motto" is stupid, it remains the same (makes no sense why, just like the loveScore it's super inconsistent) and as soon as you've picked the two choices below (CH 2 & 3), both of which are related to Dave spending more money in the future and they come up fairly early in the game, it quickly jumps to 7 and stays there till the end of CH 14. As you wrote, there are currently three choices that may decrease the value to 2 and two choices that may increase it, so the value remains between 2 and 7 for now.

Let things go- our relationship will be unaffected but Dave will waste more money in the future.
If you want to readjust the code according to possible values the following code would be more true to the original code cause you should be getting 25, 20 and 15 bucks for 2, 3 and 4 idiocy respectively, and 5 and above should get 10 bucks. A more stripped down version of the code I posted earlier, but identical to it and to the original values in terms of payment.

Python:
    if idiocy==2:
        $idiocyFactor=25
    elif idiocy==3:
        $idiocyFactor=20
    elif idiocy==4:
        $idiocyFactor=15
    else:
        $idiocyFactor=10
If you want to cheat and make 30 bucks for each BJ by setting idiocy to 1 then stick to the code I posted earlier.

Edit: You don't even need an extra variable as idiocyFactor, the code below would do the same job.

Python:
if   idiocy < 1 : idiocy = 1
elif idiocy > 7 : idiocy = 7

$currentPayment= underpassQuest * (35 - idiocy * 5)
 
Last edited:

boulimanus

Active Member
Jun 10, 2018
847
1,095
If you get to this level and want to cheat actually, don't use any of the multi lines codes above but use only one that simply sets the idiocyFactor to 100 or even 1000.
There is no telling what the dev wanted it to be and one could think the decrease should continue so that at 7 you get 0.
We shall see in the next release I guess.
 

Tanzie

Member
Mar 10, 2019
254
456
What is the maximum amount of money you were able to make without resorting to cheats? I'm curious about the amount they would have to make on the last day.
 

tania

Member
Jun 30, 2017
431
378
What is the maximum amount of money you were able to make without resorting to cheats? I'm curious about the amount they would have to make on the last day.
I didnt cheat money and finished this update with 8.3k , but you will have to pick all options that gives you more money(bad wife) and dont get gameover (less then 1 point in loveScore)
 
Last edited:

boulimanus

Active Member
Jun 10, 2018
847
1,095
Dang. Last post was November 21st? This is a patient crowd. What a breath of fresh air!
Not long to wait now for the conclusion. Should be tomorrow that we see 12 drummers drumming.
 

kevinflynn

New Member
Oct 13, 2020
11
28
1639033913139.png

v12.0 Early Release today
v12.0 is in Early Release today, starting with Hard Boiled Patrons and above.
It's a bumper episode that includes:
- content for Day 12, the final day of the game
-330+ new renders
-16 new anims
- a few minor corrections
Please let me know if you find anything wrong (including errors in pictures, text or coding). I'd also welcome any feedback on the game overall- it might help with the next one!
I hope you enjoy it!
 
Last edited:

Nayko93

Well-Known Member
Feb 3, 2018
1,245
2,712
There is 3 little thing that need change for a better game design

- different colors for the names of each characters

- the UI is too big and flashy and all around the screen
better make it small at one place or even hidden behind a little icon

- each time the picture change, the textbox and the UI disappear and re-appear, nothing important but still a little annoying
EDIT: for this one just needed to click on "skip transition"
 
Last edited:
4.00 star(s) 36 Votes