Tool Ren'Py UnRen.bat v1.0.11d - RPA Extractor, RPYC Decompiler, Console/Developer Menu Enabler

5.00 star(s) 8 Votes

greyelf

Well-Known Member
Nov 16, 2016
1,070
787
It worked but i can't view the pictures
Some Renpy games use ".webp" image files renamed to ".png" so that the file size is reduced, if this is the case with the game you are using 'unren' on then you may need to either:

1. Install a WEBP file codex so your image file viewer can understand the contents of the image file.
2. (if you already have the codex) Use an image file viewer that ignores the file extension, because if the viewer insists on treating the file as a PNG then it will fail to read it's contents.
 
  • Like
Reactions: azired12 and bas

azired12

New Member
Oct 26, 2017
3
0
Some Renpy games use ".webp" image files renamed to ".png" so that the file size is reduced, if this is the case with the game you are using 'unren' on then you may need to either:

1. Install a WEBP file codex so your image file viewer can understand the contents of the image file.
2. (if you already have the codex) Use an image file viewer that ignores the file extension, because if the viewer insists on treating the file as a PNG then it will fail to read it's contents.
it worked ! thanks
 

Dinaki

Member
Game Developer
Aug 18, 2017
111
814
Hi guys.
I made a program to view Renpy files.
You can check it out here
Also download links can be found here
 

Alvidas

Newbie
Jul 2, 2018
35
15
Thanks for this tool, it is helping me to learn the scripting. I am sure it can be used for other things too...
 
May 10, 2018
91
22
First uncheck the compress option for the whole folder / files and see if that fixes it.
Second move the folder lifeisgood-final-pc to your desktop and run it there if it doesn't work screenshot of the folder and error.
Don't know about this compress option...and Its the same when i try to extract is different location>It says powershell.exe is not recognized as internal or external command...same error
 

TCMS

Quote my posts if you want an answer
Donor
Former Staff
Aug 5, 2016
5,797
30,027
Don't know about this compress option...and Its the same when i try to extract is different location>It says powershell.exe is not recognized as internal or external command...same error
Screenshots please. =/

EDIT: Also include a screenshot of C:\Windows\System32\WindowsPowerShell\v1.0\
 

amanapanama

Newbie
Apr 22, 2018
27
224
I get same error no matter the location' powershell.exe error and couldn;t found shit error
it can't find rpatool.py because powershell is used to create that file.
Being on windows 10 it's odd that powershell is unrecognized. have you messed with your system's environment PATH variable?

try editing the bat file, search for the two lines that begin with:
powershell.exe -command
and replace powershell.exe with:
"%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe"

don't delete -command and the stuff after it on those lines
 
May 10, 2018
91
22
it can't find rpatool.py because powershell is used to create that file.
Being on windows 10 it's odd that powershell is unrecognized. have you messed with your system's environment PATH variable?

try editing the bat file, search for the two lines that begin with:
powershell.exe -command
and replace powershell.exe with:
"%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe"

don't delete -command and the stuff after it on those lines
Finally!! Thank you so much!!
This fixed the error
 
Dec 3, 2017
4
0
[FIXED] I just had to remove the files that begin with unren from my game folder.

Hello everything worked fine but when I Launch the project with Renpy, I have this error :


Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "renpy/common/00start.rpy", line 281, in script
    python:
  File "renpy/common/00start.rpy", line 282, in <module>
    renpy.block_rollback(purge=True)
TypeError: unren_noblock() takes no arguments (1 given)

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "renpy/common/00start.rpy", line 281, in script
    python:
  File "C:\Users\hp\Desktop\renpy-7.0.0-sdk\renpy\ast.py", line 862, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "C:\Users\hp\Desktop\renpy-7.0.0-sdk\renpy\python.py", line 1912, in py_exec_bytecode
    exec bytecode in globals, locals
  File "renpy/common/00start.rpy", line 282, in <module>
    renpy.block_rollback(purge=True)
TypeError: unren_noblock() takes no arguments (1 given)

Windows-7-6.1.7601-SP1
Ren'Py 7.0.0.196
Sakura Beach 1.0
Tue Jul 10 21:51:10 2018
Can you please help me ?

edit :

Is it linked to the file called unren-rollback.rpy ?

Code:
init 999 python:
  renpy.config.rollback_enabled = True
  renpy.config.hard_rollback_limit = 256
  renpy.config.rollback_length = 256
  def unren_noblock():
    return
  renpy.block_rollback = unren_noblock
 
5.00 star(s) 8 Votes