Yeah I finished downloading it and saw it was only the pictures that had been decrypted, I've just downloaded the 3 separate parts from the previous page and will play with that version.Thanks for some RPGM knowledge.
Only the www\img\pictures folder is decrypted, all the other folders in img still have .rpgmvp files, so those are now giving errors.
I looked through the system.json and am assuming that there is no way to have some encrypted and some not, but know nothing about how RPGM works so if there is a way it would be good to know otherwise I guess the only solution is to decrypt all the other images.
If you don't want to do that, you could try something else.
First set the System.json file back to how it was.
Then on line 1680 of www/js/rpg_core.js should be:
Code:
if(!Decrypter.checkImgIgnore(url) && Decrypter.hasEncryptedImages) {
Code:
if(!Decrypter.checkImgIgnore(url) && Decrypter.hasEncryptedImages && !url.match(/img\/pictures\//)) {