CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

Cheat Mod Ren'Py The Null Hypothesis Cheat Injector [v2.1] [Sleepingkirby]

Sheepy Cloud

Member
Apr 22, 2020
488
286
Code:
Searching for RPA packages
   + Unpacking "archive.rpa" - 581288697 bytes
Could not extract file  from archive: [Errno 2] the requested file . does not exist in the given Ren'Py archive

  Cleaning up temporary files...

  Creating cheat...
./scripts/interfaces/main_menu.rpy patched
./scripts/interfaces/base.rpy patched
./scripts/base/config.rpy patched
./scripts/mechanics/utilities.rpy patched
./scripts/base/player.rpy patched
./scripts/interfaces/Player_menu.rpy patched
./scripts/interfaces/sex.rpy patched
./scripts/mechanics/approval.rpy patched
./scripts/sex/request.rpy patched
./scripts/interfaces/interactions.rpy patched
./scripts/mechanics/movement.rpy patched
    Success! Cheats are now enabled!

  Cleaning up temporary files...
Cheats did enable.
Just posting that it seems to have thrown an error.
 

sleepingkirby

Active Member
Aug 8, 2017
820
1,280
Could not extract file from archive: [Errno 2] the requested file . does not exist in the given Ren'Py archive
There's nothing I can do about that error even though it's benign. That error is coming from rpatool, which is used to extra the files from archive.rpa. The error basically says, "I can't extract the current directory from the archive."
The only ways I can fix that error message is if I fix and compile my own version of rpatool. Which is not a smart thing to do.
 

Joker619

Newbie
Nov 4, 2020
67
78
When attempting to install on 0.7a gives below error:

"
No backup's found. Safe to progress.
Creating rpatool...

Searching for RPA packages

Cleaning up temporary files...

Creating cheat...
Traceback (most recent call last):
File "H:\Games\TheNullHypothesis-0.7a-pc\TheNullHypothesis-0.7a-pc\game\_cheat.py", line 23, in <module>
main_menu()
File "H:\Games\TheNullHypothesis-0.7a-pc\TheNullHypothesis-0.7a-pc\game\_cheat.py", line 10, in main_menu
with open(fn, "r") as file:
^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: './scripts/interfaces/main_menu.rpy'

Cleaning up temporary files...

----------------------------------------------------

Finished!

Enter "1" to go back to the menu, or any other"
 

sleepingkirby

Active Member
Aug 8, 2017
820
1,280
When attempting to install on 0.7a gives below error:

"
No backup's found. Safe to progress.
Creating rpatool...

Searching for RPA packages

Cleaning up temporary files...

Creating cheat...
Traceback (most recent call last):
File "H:\Games\TheNullHypothesis-0.7a-pc\TheNullHypothesis-0.7a-pc\game\_cheat.py", line 23, in <module>
main_menu()
File "H:\Games\TheNullHypothesis-0.7a-pc\TheNullHypothesis-0.7a-pc\game\_cheat.py", line 10, in main_menu
with open(fn, "r") as file:
^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: './scripts/interfaces/main_menu.rpy'

Cleaning up temporary files...

----------------------------------------------------

Finished!

Enter "1" to go back to the menu, or any other"
The last time this happened, that person's external hard drive was messed up. (Where are you guys buying these hard drives?) Here's what I wrote last time.

The output should have had the line:
Unpacking archive.rpa - ## bytes

In your games folder, does archive.rpa exist? Is it named archive.rpa or does it have a different file extension besides .rpa? Because, for some reason, the command prompt on your machine isn't finding that file and that file contains almost all of the games assets. You don't have a game if you don't have that file.
 

sleepingkirby

Active Member
Aug 8, 2017
820
1,280
working for v0.7b ?
Screenshot_2024-12-16_02-48-31.png
Dude. It's been 3 hours since it's been released and it's a beta version. Chill.

But also, probably? Don't know. Try it out. It should be compatible unless RonChon drastically rewrites code. Lastly, playing beta versions can mess up your saves. If you want to take that risk, that's up to you.
 
Jan 23, 2020
15
26
What do you mean it doesn't like adjusting the climax gauge? Do you mean it doesn't do it? It's difficult to? It crashes when you try?

Because it's working on my side.
my bad. for one im runnint 7b so that could def be the problem. but the moment i hover my mouse up i get an exception error saying tooltip has no name or something like that
 

Nimbus

Newbie
Dec 21, 2017
27
6
Not really a mod questionn but, is there an actual difference between the states of horny and nympho? I don't think I've gotten the latter to show up yet. Also how do you make them knock on your door more often?
 

sleepingkirby

Active Member
Aug 8, 2017
820
1,280
Not really a mod questionn but, is there an actual difference between the states of horny and nympho? I don't think I've gotten the latter to show up yet. Also how do you make them knock on your door more often?
Honestly, I'm not too sure myself. It's been a while since I've looked at those statuses and a lot of the code has changed since I've looked at it. Here's a quick scan of the code now. For the most part, horny and nympho do the same things. It's just that nympho is more than horny. Like the reaction is horny + 1.

As for how to get nympho, if someone's horny status is too high, it gets turned into nympho:
Code:
            elif status == "horny":
                if self.status["horny"] >= 2:
                    self.status["horny"] = 0
                    self.status["nympho"] += 2
                else:
                    self.status[status] += 1
            elif status == "nympho":
                self.status[status] += 2
As for how do you make them knock on your door, I don't know. Never looked that up. I'd have to see a dialogue or something to trace that down. The only ones I know are event driven.