2.80 star(s) 25 Votes

Elton1997

Newbie
Oct 4, 2019
35
45

Ummm but here I can't enter those passwords



Passwords for the Get Money option:

Password = LUBRICATEIT
Withdraw $30 each day

Password = IMHERETOTEST
Patreon Outfit!" with dissolve:

Password = IDOLIKEHER
2 exclusive outfits +e500!" with dissolve:

Password = SHESMYGIRL
3 exclusive outfits +e1500!!" with dissolve:

Password = ElDeadbird
money = 1000
money_e = 1000



or I can???
 
  • Like
Reactions: MordredWoF

Morgue

Member
Aug 9, 2016
176
365
Ummm but here I can't enter those passwords



Passwords for the Get Money option:

Password = LUBRICATEIT
Withdraw $30 each day

Password = IMHERETOTEST
Patreon Outfit!" with dissolve:

Password = IDOLIKEHER
2 exclusive outfits +e500!" with dissolve:

Password = SHESMYGIRL
3 exclusive outfits +e1500!!" with dissolve:

Password = ElDeadbird
money = 1000
money_e = 1000



or I can???
AGAIN..... those above PASSWORDS DO NOT WORK....
The Developer went with a whole new system for the password...
The Only one that Does still work is
SHOWMETHEDIRTS
 

Agul

Member
Jun 19, 2017
308
1,457
why on earth is the exploring so bad? why do you need to wait to explore and wait for her to scan? and when you wait why does she say you are not forced to be here? it's just unnecessary
You can use the skip function if you have the "unseen text" option selected in preferences. Not an ideal solution because you have to keep flicking it on and off and you have to be careful using both it and the rollback function. You can trigger dialogue for not answering your gf if you rollback too far for example, which nets you a bad memory. Not fun but it can save you some time.
 

maxdadson

Newbie
Mar 8, 2018
16
92
[v0.00245] New ATM Passwords(numeric)

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.
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.
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 have solved it.
Password math: 253 X your_input X 15 = 7544460
Solution: 253 X 1988 X 15 = 7544460
A little mixed but worked.
 
Last edited:

maxdadson

Newbie
Mar 8, 2018
16
92
[v0.00245] New ATM Passwords(numeric)[Real]

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.
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.
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 have solved it.
Password math: 253 X your_input X 15 = 7544460
Solution: 253 X 1988 X 15 = 7544460
A little mixed but worked.
 

maxdadson

Newbie
Mar 8, 2018
16
92
ATM System Source Code:
Python:
label test_code:
    hide screen numeros
    $contrasena = 253 * code_value * 15

#-------------------------------------------------
#ATM Basic
    if contrasena == 7544460:
        if pat_0:
            show text "{size=35}{color=#000000}Used password!" with dissolve:
                xalign 0.5 yalign 0.4
            $renpy.pause(1, hard=True)
            hide text with dissolve
            $code_value = 0
            jump work
        $govermentchesse = True
        $pat_0 = True
        show text "{size=35}{color=#000000}Now you'll get $45 each day!" with dissolve:
            xalign 0.5 yalign 0.4

        $renpy.pause(2, hard=True)
        hide text with dissolve
        $code_value = 0
        jump work
#Gold Basic
    if contrasena == 32435865:
        if treasure_1:
            show text "{size=35}{color=#000000}Used password!" with dissolve:
                xalign 0.5 yalign 0.4
            $renpy.pause(1, hard=True)
            hide text with dissolve
            $code_value = 0
            jump work
        $treasure_1 = True
        $money_e += 200
        show text "{size=35}{color=#000000}ACCES GRANTED: Now you have 200 {size=45}e{size=35} to spend!" with dissolve:
            xalign 0.5 yalign 0.4
        $renpy.pause(3, hard=True)
        hide text with dissolve
        jump work
#tester
    if contrasena == 34192950:
        if pat_1:
            show text "{size=35}{color=#000000}Used password!" with dissolve:
                xalign 0.5 yalign 0.4
            $renpy.pause(1, hard=True)
            hide text with dissolve
            $code_value = 0
            jump work
        $pat_1 = True
        $clothing_patreon_girl = True
        show text "{size=35}{color=#000000}You've unlocked the Patreon Outfit!" with dissolve:
            xalign 0.5 yalign 0.4
        pause 2
        hide text with dissolve
        $code_value = 0
        jump work
#supporter
    if contrasena == 7631745:
        if pat_2:
            show text "{size=35}{color=#000000}Used password!" with dissolve:
                xalign 0.5 yalign 0.4
            $renpy.pause(1, hard=True)
            hide text with dissolve
            $code_value = 0
            jump work
        $pat_2 = True
        $clothing_patreon_girl = True
        $clothing_clothing_blacked = True
        $money_e += 500
        show text "{size=35}{color=#000000}You've unlocked 2 exclusive outfits +e500!" with dissolve:
            xalign 0.5 yalign 0.4
        $renpy.pause(3, hard=True)
        hide text with dissolve
        $code_value = 0
        jump work
#spender
    if contrasena == 26508075:
        if pat_3:
            show text "{size=35}{color=#000000}Used password!" with dissolve:
                xalign 0.5 yalign 0.4
            $renpy.pause(1, hard=True)
            hide text with dissolve
            $code_value = 0
            jump work
        $pat_3 = True
        $clothing_patreon_girl = True
        $clothing_blacked = True
        $clothing_beach_and_sun = True
        $money_e += 1500
        show text "{size=35}{color=#000000}You've unlocked 3 exclusive outfits +e1500!!" with dissolve:
            xalign 0.5 yalign 0.4
        $renpy.pause(3, hard=True)
        hide text with dissolve
        $code_value = 0
        jump work


#owner
    if contrasena == 7650720:
        $money = 1000
        $money_e = 1000
        show text "{size=35}{color=#000000}WELCOME MR DEADBIRD" with dissolve:
            xalign 0.5 yalign 0.4
        $renpy.pause(3, hard=True)
        hide text with dissolve
        $code_value = 0
        jump work


    show text "{size=35}{color=#000000}Wrong Password":
        xalign 0.5 yalign 0.4
    $renpy.pause(1, hard=True)
    hide text with dissolve
    $code_value = 0
    jump work
ATM Passwords
 

Innesda

Member
Jul 25, 2018
153
353
You can use the skip function if you have the "unseen text" option selected in preferences. Not an ideal solution because you have to keep flicking it on and off and you have to be careful using both it and the rollback function. You can trigger dialogue for not answering your gf if you rollback too far for example, which nets you a bad memory. Not fun but it can save you some time.
yea im already doing that but it's such a bad work around :(
 
2.80 star(s) 25 Votes