- Sep 9, 2016
- 4,389
- 39,879
The old "unren_noblock" that used to work is now... not working in ren'py 8.2.0+
They changed a lot in the "20" series it seems.
This worked on all older versions.
However, when used on the game Lust Bound it give these traceback errors attached below.
This seems to be the issue?
As when these are #'ed out or removed - the rest works fine.
What noblock works in the new ren'py version now???
Thanks guys!!!
They changed a lot in the "20" series it seems.
This worked on all older versions.
Python:
init 999 python:
_preferences.skip_unseen = True
renpy.game.preferences.skip_unseen = True
renpy.config.allow_skipping = True
renpy.config.fast_skipping = True
# Divide_By_Zero
renpy.config.rollback_enabled = True
renpy.config.hard_rollback_limit = 256
renpy.config.rollback_length = 256
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
try:
config.keymap['rollback'] = [ 'K_PAGEUP', 'repeat_K_PAGEUP', 'K_AC_BACK', 'mousedown_4' ]
# Allows interruption of Hard Pause... USE '*' key on KEYPAD (NUMPAD)... (NOT 'SHIFT' + '8')
config.keymap['dismiss_hard_pause'].append('K_KP_MULTIPLY')
except:
pass
try:
config.underlay[0].keymap['quickSave'] = QuickSave()
config.keymap['quickSave'] = 'K_F5'
config.underlay[0].keymap['quickLoad'] = QuickLoad()
config.keymap['quickLoad'] = 'K_F9'
except:
pass
This seems to be the issue?
Python:
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
What noblock works in the new ren'py version now???
Thanks guys!!!
Last edited: