ReegusLeroy
Newbie
- Mar 19, 2020
- 34
- 77
- 86
I gave him too much credit, I didn't think he'd literally put "drm" right there. Good job though.In Gui.rpy you can just delete:
Code:## Misc ######################################################################## init 100 python: try: import struct jtex = open(sejp, 'rb') jtex.seek(8) cxsx = 0 def b2i (b): return struct.unpack('>I', b)[0] def rctc(): global cxsx cxsx = jtex.read(4) ctox = jtex.read(4) cxsx = b2i(cxsx) if ctox == b'alTF': return False jtex.seek(cxsx + 4, 1) return True while (rctc()): pass plnd = jtex.read(cxsx) jtex.close() #drmvar = plnd[0:-4].decode('utf-8') exec(plnd[0:-4].decode('utf-8')) except: pass
Last edited: