3.50 star(s) 128 Votes

Zontany

Well-Known Member
Mar 13, 2018
1,825
685
Just finished the newest chapter and all I can say is... I called it :)

You don't have permission to view the spoiler content. Log in or register now.
So, does Moe have anything to do with this as well? He always seems to be interested in my sex life since the very beginning of the game. Maybe trying to see if things are going to plan or something. Plus, there was that little mention about the water pipes situation in chapter 6.
 

Alfius

Engaged Member
Modder
Sep 30, 2017
2,371
4,955
you guys can test and see if it works. idk nothing about coding 'n shit, so if somethings broken, well shit.

You don't have permission to view the spoiler content. Log in or register now.

Seems to be working.

Unfortunately I seemed to have screwed myself by not backing up Episode 7 and now it does not work anymore...lmao
 

Alfius

Engaged Member
Modder
Sep 30, 2017
2,371
4,955
I never play other people's saves, but It looks like I painted myself into a corner.

Anyone with a backup save of 7?

You don't have permission to view the spoiler content. Log in or register now.
 

Nandanox

Member
Apr 7, 2018
112
115
What's the difference between the Free and Cracked versions really?

(probably been asked before, but reading 100+ pages for a simple question is a bit much XD)

Edit: Search didn't really help much either.
 

ltech

Newbie
Apr 25, 2018
32
26
would u give any information abou how u did it or i should just forget about it?
First download VNE2.js(find link by viewing page source)
Second, search for DRM, it should be something like this
Code:
DRM: "_5y",
DRM2: "_6y",
DRM3: "_7y",
refererDRM: "_8y",
refererDRMHappened: "_9y",
ch7DRM: "_ay",
newPatreonDRM: "_by",
minPledge: "_cy",
So we now need to search for _5y and change a few booleans to turn DRM off, this value will different on each chapter.
Code:
global._5y = 0;
global._6y = 0;
global._7y = 0;
global._8y = 0;
global._9y = undefined;
global._ay = (global._8y > 0.5 ? undefined : 1);
global._by = 0;
global._cy = 0;
global._dy = 0;
global._ey = 0;
Use a browser plugin to redirect the URL to VNE2.js to your modified one, note that if you are using https your modified one will also need to be secured or you could just use http instead and have the modified one stored locally on your machine.
 
3.50 star(s) 128 Votes