sleepingkirby
Well-Known Member
- Aug 8, 2017
- 1,057
- 1,645
For some reason, it's not creating _rpatool nor _cheat.py which is required. I can't say exactly why but... are you running all this in vim? If so, why?
For some reason, it's not creating _rpatool nor _cheat.py which is required. I can't say exactly why but... are you running all this in vim? If so, why?
No, that helps me very little. In fact, all your screen caps managed to cut off just enough to give me the full picture.No i just bury my games deep, just happens i don't use vim a lot lol. I have played before and have saves on only 7b if that is of any use. Here is my game folder if useful:
View attachment 4513712
Glad you enjoy it.Hey Kirby,
thanks for creating this.
This actually is a problem with the game, not the cheat. It's been there for quite a while. Please read the following for the full explanation.I'm getting this error when I mouse over the girl's pleasure value during seggs.
Thanks for taking the time to link me the original thread, I appreciate you buddy.Glad you enjoy it.
This actually is a problem with the game, not the cheat. It's been there for quite a while. Please read the following for the full explanation.
https://f95zone.to/threads/the-null...ector-v2-1-sleepingkirby.199827/post-15499332
I got thisAnything else after that? That's a flaw with rpatool and I don't have any control over. It's also a benign error message. If there are no more error messages after that, you should be good.
Hopefully its done? Im on MAC. thanks thanks################################################################################
The Null Hypothesis Cheat Injector
Vesrion: 2.1
by Sleepingkirby
Inspired/based on RL Cheat Injector by SLDR @ F95zone.com
################################################################################
Checking if modification has already been done...
No backup's found. Safe to progress.
Checking to make sure requirements are met.
Files to be editted not found. Is it still in the archive.rpa?
Rpatool missing. Downloading
--2025-04-21 12:03:34--You must be registered to see the links
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.111.133, 185.199.110.133, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 18594 (18K) [text/plain]
Saving to: ‘rpatool’
rpatool 100%[===================>] 18.16K --.-KB/s in 0.02s
2025-04-21 12:03:35 (760 KB/s) - ‘rpatool’ saved [18594/18594]
Extracting archive.rpa...
Could not extract file from archive: [Errno 2] the requested file . does not exist in the given Ren'Py archive
./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
./scripts/interfaces/base.rpy patched
./scripts/interfaces/main_menu.rpy patched
DONE!
Yeah. It says it's done. There aren't any more messages so that should be good.I got this
Hopefully its done? Im on MAC. thanks thanks
What do you mean "get it to activate"? I've tested it against 0.8a and, short of the relationship fixer (Just wanted to submit a possible incompatibility report. I think the newest version (0.8) broke it. Tried a few different methods to get the cheats to activate--- nothing.
I did get this error: Could not extract file from archive: [Errno 2] the requested file . does not exist in the given Ren'Py archive
With the rest of the lines spitting out as normal after.
when i increase the girls love/trust, it will go past the 1000 limit. but then after an action or activity, it resets back to 1000. Is this normal with the cheat?
Oh for some reason, no matter what I do, the cheats aren't enabled. I've used admin mode. I've made sure it's in the right folder. IDK what's going on lol. When I boot up, the cheats aren't enabled/nor is there even evidence of the mod/script.What do you mean "get it to activate"? I've tested it against 0.8a and, short of the relationship fixer (I'll release a fix for that soon. Ororo being added to the companion list broke it.Just realized this is a beta. Will release fix when stable version is out.), it should all be fine. If you're wondering *how* to use to the cheat, please refer to the screenshots in the first post of this thread.
Code must reference that limit elsewhere, still reverts to 1000 (checked multiple times, even deleted the rpyc).No. I'll go fix that. This cheat breaks the 1000 limit for each season but RonChon changed the syntax of how the limits are defined.
Just realized 0.8a is a beta version. I'll implement this fix (and maybe the Ororo/relationship fixer fix if that's still needed) when the stable version is released. If you want to fix this for the time being, with the cheat applied:
- go into the game's folder
- find game/scripts/mechanics/approval.rpy
- open that up in a text editor
- look for this line:
- define max_stats = (99999, 99999, 99999, 1000)
- change that last 1000 to 99999
- save and restart the game if it's running.
I deleted the entire else statement on my end, which probably isn't good practice, and things seem to be working. Feels like doing surgery with a sharp rock, but it should tide most people over until a proper fix can be made.Code must reference that limit elsewhere, still reverts to 1000 (checked multiple times, even deleted the rpyc).
*edit* Looks like the line:
-else:
update = 1000 - stat if stat + update >= 1000 else update
could be the issue, but my Python knowledge doesn't go much further than "make number bigger"
Also of note: sex anywhere no longer works, mood flags no longer change, and relationship changes throw an error.
Huh... that's new.Code must reference that limit elsewhere, still reverts to 1000 (checked multiple times, even deleted the rpyc).
*edit* Looks like the line:
-else:
update = 1000 - stat if stat + update >= 1000 else update
could be the issue, but my Python knowledge doesn't go much further than "make number bigger"
Also of note: sex anywhere no longer works, mood flags no longer change, and relationship changes throw an error.
if Character in getattr(store, f"ch{chapter}_Companions"):
update = max_stats[season - 1] - stat if stat + update >= max_stats[season - 1] else update
else:
update = 1000 - stat if stat + update >= 1000 else update
I've looked into it. This is a bug in the game. So check this out:Code must reference that limit elsewhere, still reverts to 1000 (checked multiple times, even deleted the rpyc).
*edit* Looks like the line:
-else:
update = 1000 - stat if stat + update >= 1000 else update
could be the issue, but my Python knowledge doesn't go much further than "make number bigger"
Also of note: sex anywhere no longer works, mood flags no longer change, and relationship changes throw an error.
if Character in getattr(store, f"ch{chapter}_Companions"):
update = max_stats[season - 1] - stat if stat + update >= max_stats[season - 1] else update
else:
update = 1000 - stat if stat + update >= 1000 else update
getattr(store, f"ch{chapter}_Companions")
{'Jean': True, 'Laura': True, 'Rogue': True}
'Jean' in getattr(store, f"ch{chapter}_Companions")
if Character.tag in getattr(store, f"ch{chapter}_Companions"):