Appreciate your effort and finally got a chance to use this version; it didn't work when option 5 (quick save/load) was involved.OP updated to v0.8.
Starting the game would throw an exception saying 'invalid key specifier', so I checked unren-quick.rpy and found the following two lines:
Code:
config.keymap['quickSave'] = ''
config.keymap['quickLoad'] = ''
Solution (step by step):
- open the UnRen script in the text editor of your choice
- go to lines 49 and 50 which read
# quicksavekey="K_F5"
and# quickloadkey="K_F9"
- uncomment these two by removing each # and option 5 will work as expected (i.e. keymap in unren-quick.rpy contains K_F5 and K_F9, respectively).
goobdoob, I suspect you encountered the same problem in the past, hence the above two commented lines. Did you ever find out when they are needed and when they aren't?