- Jan 14, 2020
- 89
- 26
Make sure every folder name in Unren's path is ASCII only (simply put, A-Z, a-z, 0-9, spaces). E.g. no vowels with accents or somesuch. I.e. "C:/Games/Being a DIK" -> ok. "C:/Users/Störmund/R€cycled/Mom don't look/Mom seriously/MOM!!!/HappyFunTimes/Ren'Py/Being a DIK" -> not ok.Hello. Not sure if someone has faced the same issue, but I am having troubles for a while with this decrypter. When I try option 1 or 2, it freezes not only UnRen but also my computer. This happens with almost all games I've tried, last one Being a DIK. I am using Windows 10. Wondering if some1 could help. Thanks.
What do you want to do Unren?It doesn't work, i put file in game directory with game .exe and after i try to launch unren cmd window pops up for half second and nothing happens... I tried to run as admin but it didn't work either.
I want to mod Being a DIK game.What do you want to do Unren?
Do you want to make a mod? Using Unren? O_0I want to mod Being a DIK game.
I want to install modDo you want to make a mod? Using Unren? O_0
I don't know. When goobdoob will be online, he will respond.
Install a mod for the game? Then why do you need Unren, just throw the mod in the "game" folder.I want to install mod
In mod thread it says it should be installed using Unren.Install a mod for the game? Then why do you need Unren, just throw the mod in the "game" folder.
Mods are always laid out ready-made.
Then you need to enable the console or developer menu I think. This is key 3In mod thread it says it should be installed using Unren.
No I won't!Do you want to make a mod? Using Unren? O_0
I don't know. When goobdoob will be online, he will respond.
Try running it from a cmd window. That way you'll see the error message, instead of having the disappearing cmd window take it away.It doesn't work, i put file in game directory with game .exe and after i try to launch unren cmd window pops up for half second and nothing happens... I tried to run as admin but it didn't work either.
Try. Open Unren with Notepad and find the key that is responsible for skipping, change it. It is important to save the file in the same encoding as it was, so I recommend using Notepad++I have a question and a suggestion.. Can one remap the Ctrl (skip) key to be used by a mouse button (like the side buttons for forward/back while browsing)?
I'm not particularly skilled with these things, but as far as I can tell you can't actually remap the keys in Unren itself, only whether being able to skip is True/False. I believe you can remap them in the individual game's Renpy files though (much like switching console.config to True before this mod made it easier). I had limited success doing this once myself, though I mistakenly caused an auto-skip to next decision instead of a skip on hold/stop skipping on release like with Ctrl. I did this in the 00keymap file.Try. Open Unren with Notepad and find the key that is responsible for skipping, change it. It is important to save the file in the same encoding as it was, so I recommend using Notepad++
Add the following lines to unren-dev.rpy (created by UnRen when you pick option 3), taking care to match the indentation of the previous lines:I have a question and a suggestion.. Can one remap the Ctrl (skip) key to be used by a mouse button (like the side buttons for forward/back while browsing)?
config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL', 'mousedown_7' ]
config.keymap['stop_skipping'] = [ 'mouseup_7' ]
Wow, it worked perfectly. Thank you! I knew someone could figure it out.Add the following lines to unren-dev.rpy (created by UnRen when you pick option 3), taking care to match the indentation of the previous lines:
On most mice with back/forward buttons, button #7 should correspond to the forward button. Change to 6 if you want to use the back button instead.Python:config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL', 'mousedown_7' ] config.keymap['stop_skipping'] = [ 'mouseup_7' ]
Yes. Both. (Not for the *.rpyc -> compiled version of the corresponding *.rpy, generated by RenPy<!>)... I wonder if there's a way to code it into Unren itself. As it stands one would have to enter that in for each game.... unless those two files, the .rpy and .rpyc are the only files that get added/altered ...
No.... I assume not though, as option 3 likely alters the 00console file among others. ...
Insert the following lines into UnRen.bat in the proper place (for UnRen 0.8, the proper place would be line 267):I wonder if there's a way to code it into Unren itself.
echo config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL', 'mousedown_6' ]>> "%consolefile%"
echo config.keymap['stop_skipping'] = [ 'mouseup_6' ]>> "%consolefile%"
Wow, that's excellent. It worked perfectly. Though I did seem to only be able to edit the batch info in Notepad and thus could not determine what line I was on. I took a guess and got lucky on the correct placement.Insert the following lines into UnRen.bat in the proper place (for UnRen 0.8, the proper place would be line 267):
Code:echo config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL', 'mousedown_6' ]>> "%consolefile%" echo config.keymap['stop_skipping'] = [ 'mouseup_6' ]>> "%consolefile%"
Well, the mod's thread want you to do something useless.In mod thread it says it should be installed using Unren.