Nobody69omega

New Member
Sep 3, 2021
6
10
This game is shit.
It soft locks you out of it after hours of effort, why are people even playing suff like that, it is for the porn, not even SMT nocture was so nasty!
 

Hstrike

Member
Apr 1, 2018
223
100
Why while i'm saving the game it take so long, And is there a way to rollback after a choice? I think there's a file out there call renpy unpack or something but I forgot about it.
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,137
3,215
Why while i'm saving the game it take so long, And is there a way to rollback after a choice? I think there's a file out there call renpy unpack or something but I forgot about it.

create a file called whatever you want make sure you put rpy as the format and put these lines

Python:
init python:
    config.use_cpickle = True
    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' ]
    except:
        pass
 

24guydeluxe

Newbie
Mar 8, 2020
28
17
create a file called whatever you want make sure you put rpy as the format and put these lines

Python:
init python:
    config.use_cpickle = True
    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' ]
    except:
        pass
gives me error at the start
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,137
3,215
gives me error at the start
try again just forgot to indent the return

Python:
init python:
    config.use_cpickle = True
    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' ]
    except:
        pass
 
  • Like
Reactions: getahaircuthippie

Nobody69omega

New Member
Sep 3, 2021
6
10
I have a simple solution for you.
If you don't like it, don't play this game
and that's it
Then how about you put a warning, "there is a chance you get softlocked and have to waste hours redoing everything."
Imagine if every game was like that, one wrong step and you have to redo everything?
This is not even
 
  • Like
Reactions: TheRaven466

Hstrike

Member
Apr 1, 2018
223
100
create a file called whatever you want make sure you put rpy as the format and put these lines

Python:
init python:
    config.use_cpickle = True
    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' ]
    except:
        pass
thanks sir
 

24guydeluxe

Newbie
Mar 8, 2020
28
17
try again just forgot to indent the return

Python:
init python:
    config.use_cpickle = True
    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' ]
    except:
        pass
now it works, thanks but for anybody doing this if you press the skip and then try to rollback, it's not gonna work
 
3.30 star(s) 178 Votes