- Aug 8, 2017
- 820
- 1,280
Can you give me more info than "it's not working"? When you ran the .bat file, were there errors? What's the output when you run the .bat file?i run the bat file but the cheat doesn't show up like in your video
Can you give me more info than "it's not working"? When you ran the .bat file, were there errors? What's the output when you run the .bat file?i run the bat file but the cheat doesn't show up like in your video
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...
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."Could not extract file from archive: [Errno 2] the requested file . does not exist in the given Ren'Py archive
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.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 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.
working for v0.7b ?
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?it doesn't like adjusting the climax guage during sex currently
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 thatWhat 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.
Yeah, that video was made on 0.7b-beta.my bad. for one im runnint 7b so that could def be the problem.
That's an issue with the game since a long time ago even without the cheat. See here for a full explanation.but the moment i hover my mouse up i get an exception error saying tooltip has no name or something like that
If you need tool tips in the future, remember to set the variable.appreciate it. Tooltips off worked for me
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.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?
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