redlong264

Member
Jul 21, 2017
114
92
waited so long for new content update!!!! thank you alot for upload.
Personally this graphic improve is best part, it's right choice from dev team.
 

joinchi

Member
Sep 17, 2020
170
103
I really want to know what can be obtained with one hundred thousand dollars? Has anyone tried it?
 

TakenName97

Newbie
Oct 17, 2020
28
11
Question idk how to progress further, my sis i don't know how to learn massage. The sleeping pills idk how to make agent 17 hack the hospital, idk how to progress with the nurse for more than a hand. i think i need the phone password but again i don't know it.
 

cavemeng

Newbie
Aug 10, 2020
30
38
the dev should be making ways to earn money to blocking ways to get it. the grind to do anything in this game is painful although without the grind there is like 10 minutes of content i do not hate the game i just want better for it
 

HydratedMan

Member
Oct 16, 2017
324
364
the dev should be making ways to earn money to blocking ways to get it. the grind to do anything in this game is painful although without the grind there is like 10 minutes of content i do not hate the game i just want better for it
you can make money by selling panties, opening the vault and by blackmailing the teacher if you don't wanna make the cleaning, more ways to get money should appear later in the game.
 

delta67

Member
May 11, 2018
314
311
This game deserves 1 star just because the dev spends so much time blocking all means to cheat money. Give low money for in game tasks and actively blocks all cheat = major dick move
I'll think he's changed it in minigame.rpy from PutGold into Putmoney
 

shikidon

New Member
Jun 28, 2017
3
1
Dirty way to get money (did it very quickly just to make it work so i may have changed too much code)
Go into game\script\Setting and open function.rpy:

Code:
def CheckEncryption():
        global g_gold, m_encryption
        
        if m_encryption == Encryption(g_gold):
            return True
        else:
            return True

.......................

    def PutMoney(gold, ac):
        global g_gold
        
        if CheckEncryption():
            renpy.hide_screen("put_gold_screen")
            renpy.show_screen("put_gold_screen", add_gold = gold)
            close_screen_delay("put_gold_screen", 58)
            
            renpy.sound.play("audio/effect/getitem.wav")
            
            if GetActor(ac).Gold() < gold:
                g_gold = g_gold + gold
                SetEncryption(g_gold)
            else:
                g_gold = g_gold + gold
                SetEncryption(g_gold)
            
            return True
        else:
            g_gold = gold
            SetEncryption(gold)
            return True
Now you can use console "$PutMoney(xxxx, "ai")"
 
3.30 star(s) 152 Votes