Found an easy way to purchase the patron clothing after you unren the files. If you go into inventory.rpy and scroll down to the very bottom find this batch of code.
if hasattr(item[0], 'ptr') and item[0].ptr == True and not isPTR():
Change it to the following.
if hasattr(item[0], 'ptr') and item[0].ptr == True and isPTR():
Worked for me, and a lot easier than messing with MD5 passcodes. /shrug
Didn't go through all the messages to see if anyone else had posted this work around or not.
if hasattr(item[0], 'ptr') and item[0].ptr == True and not isPTR():
Change it to the following.
if hasattr(item[0], 'ptr') and item[0].ptr == True and isPTR():
Worked for me, and a lot easier than messing with MD5 passcodes. /shrug
Didn't go through all the messages to see if anyone else had posted this work around or not.