- Oct 22, 2018
- 874
- 471
Decrypt? Um... No. Nothing crypted here.Isn't there a line of code to decrypt the files?
If you can:Isn't there a line of code to decrypt the files?
Well I would like to unpack to get games images. I like to do that after playing them to see if I miss somethingDecrypt? Um... No. Nothing crypted here.
The files of most RenPy games are packed in a special RenPy archive (*.rpa) and the scripts of the game (*.rpy files) then are compiled. (*.rpyc) What of this is of interest for you?
For unpacking you can use one of the three existing RPA unpackers(one of them written by me - in my sig to find) and for decompiling you can use the renpy decompiler "unrypc" developed by "censoredusername".
Assuming that you don't want to download the game twice, and have a computer in addition to you Android device :Well I would like to unpack to get games images. I like to do that after playing them to see if I miss something
I already told you what you need to do.I use JoiPlay so I already have the PC version. I want to unpack it on my device cuz I can't access a laptop or pc
If you can:
then you can do what UnRen does. But you can't run UnRen.
- ssh to your phone and get a command line
- install python
- install arbitrary python scripts from github
If you don't get how to use this, you probably shouldn't; you just might fuck up your game. But you put it in the root folder of the game basically, where the .exe is.i dont get it
This have to be done while playing the game, and in the game itself.then press Shift+o but nothing action
Of course I do it inside the game but still not workingThis have to be done while playing the game, and in the game itself.
Hey, could you maybe tell us on which game you are trying to do this?Of course, I do it inside the game but still not working
sure bro, the game is ( Indecent Desires)Hey, could you maybe tell us on which game you are trying to do this?
This way we could try it ourselves and maybe can then figure out what the problem is.
Well sorry man, but I got it to work on the first try.sure bro, the game is ( Indecent Desires)
yea it's working now after I downloaded this filesWell sorry man, but I got it to work on the first try.
Just to be sure the "UnRen.bat" file is in the "IndecentDesires-theGame" folder right where the "IndecentDesires.exe" ?
And did you already try to run "UnRen.bat" once normal, and maybe also as Administrator it maybe needs Admin access to create the new files?
If it still false here is a .rar file that contains the "unren-dev.rpy" & "unren-dev.rpyc" files place them in the "game" folder then the console should also work.
Either just type XPLexi = 20 or XPLexi += 4 to add 4 to it. Depending on the game (haven't played this one) you might want to do something like XPLexi += 1 four times, and see if there's any events for each level. You can use Notepad ++ to look at the RPY files to see the progression, and any GREP search program to do a deep search in the game files to see what the variable affects.I'm trying to alter a variable in Leap of Faith due to a repetitive bug I've encountered with Lexi.
The console is up and running, I can see that my XPLexi = 16 but I need to change it to at least 20.
What is the console command for changing character relationship variables or does each game have their own?
You sir or madam, have saved the day . That is exactly how it works. Apparently you just have to write the variable value as it is stated. In this case XPlexi = 20 and that basically changes the said value. If I add XPLexi = 20, it pretty much sticks a new variable into the script, which might or might not break something. Still it works, although I think the variable strings differ on where they start for the value change to be noticable.Either just type XPLexi = 20 or XPLexi += 4 to add 4 to it. Depending on the game (haven't played this one) you might want to do something like XPLexi += 1 four times, and see if there's any events for each level. You can use Notepad ++ to look at the RPY files to see the progression, and any GREP search program to do a deep search in the game files to see what the variable affects.
No problem. I'm a "he" thanks for not assuming. It can be difficult to figure out at first when you're not used to doing this, but it has saved me a lot of frustration playing all the indy adult games out there. One thing you quickly learn is that a lot of people have no idea how to script, or they're Russian grindmasters looking to make a quick buck with redundant grindy content. I really recommend getting Notepad ++ to use with Ren'Py or VNMaker games and learning how to read scripts slowly over time. For example a lot of people will accidentally make content inaccessible due to bad variables or jumps and you'd never know without looking at the actual script files, or they'll artificially gate content behind a bunch of in-game days at some arbitrary amount and your time is worth more than dealing with that BS.You sir or madam, have saved the day . That is exactly how it works. Apparently you just have to write the variable value as it is stated. In this case XPlexi = 20 and that basically changes the said value. If I add XPLexi = 20, it pretty much sticks a new variable into the script, which might or might not break something. Still it works, although I think the variable strings differ on where they start for the value change to be noticable.
Cheers for the help!