I have created some easy steps to get the mod to load in v0.5.1.
- Open the file
renpy/script.py
in a text editor
- Look for the line
def build_archive_rpyc(self, data, key):
(it's at line 629 for me)
- Add a new line below that line, starting with 8 spaces and then:
if data[:5] == b'\x80\x02\x7d\x71\x01': return data
- The result should look like this:
- That's all. The mod should now load as expected
(These instructions are also added in the OP)