- May 6, 2017
- 3,987
- 30,519
No, sorry. It's Windows onlyCan this work on a mac?
No, sorry. It's Windows onlyCan this work on a mac?
Thats too bad. Do you know if theres a mac version some where? I tried looking around and downloaded some rar and zip files, but they don't seem to work either.No, sorry. It's Windows only
Don't know if this is any help? From another thread (after using a marvellous tool called search)...Can this work on a mac?
UnRen is just a script that calls other things. It uses rpatool and unrpyc.
You must be registered to see the links
You must be registered to see the links
Probably because they aren't legit JPEG files but WEBP files with a "jpg" extension.For example, after running it on MILF City it will say "1.jpg We can't open this file"
Any ideas? Again its not all games just some of the newer ones.
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)
def unren_noblock(*args, **kwargs):
return
:menu
REM --------------------------------------------------------------------------------
REM Menu selection
REM --------------------------------------------------------------------------------
set exitoption=
echo Available Options:
Wait an "interaction" before doing anything else. So, basically, click to pass to the next dialog line.This might be a really dumb question, but I'm kinda new to this. Ive accessed the console in Ren'py and know the variable names, but once I change them, how do I make it stick/permanent? Even after I change it, press enter, and exit, the values are the same.
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 "D:\Downloads\LustCity-0.2-pc\renpy\ast.py", line 862, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "D:\Downloads\LustCity-0.2-pc\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-8-6.2.9200
Ren'Py 7.0.0.196
LustCity 0.2
Fri Jun 22 04:05:31 2018
Usually when that happens, my workaround is rollback, then ignore, and it starts the game. Happens more frequently now, but I believe they are working on a fix.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 "D:\Downloads\LustCity-0.2-pc\renpy\ast.py", line 862, in execute renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store) File "D:\Downloads\LustCity-0.2-pc\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-8-6.2.9200 Ren'Py 7.0.0.196 LustCity 0.2 Fri Jun 22 04:05:31 2018
The fix is to declare unren_noblock with unfixed arguments. Time for unren to be fixed, you must edit "[name of the game]/game/unren-rollback.rpy" and change line 5 from :File "renpy/common/00start.rpy", line 282, in <module>
renpy.block_rollback(purge=True)
TypeError: unren_noblock() takes no arguments (1 given)
def unren_noblock():
def unren_noblock( *args, **kwargs ):
try:
config.underlay[0].keymap["quickSave"] = QuickSave()
config.keymap["quickSave"] = "K_F5"
config.underlay[0].keymap["quickSave"] = QuickLoad()
config.keymap["quickSave"] = "K_F9"
except:
pass
Thank you anne, once I understood what you meant...The fix is to declare unren_noblock with unfixed arguments. Time for unren to be fixed, you must edit "[name of the game]/game/unren-rollback.rpy" and change line 5 from :
<snip>Code:def unren_noblock(): [code] to : [code] def unren_noblock( *args, **kwargs ):