F95User123
Newbie
- Mar 27, 2017
- 16
- 14
- 60
To make FapMode work editing the HTML file:
edit line 4973 and 4974:
This is the data taken normally from a GET request showing certainvariables whether a code is valid or expired.
All you have to do is change it to:
You do have to make sure that the code that's input is a potentially correct code, like 1159803848, because the code won't execute otherwise due to
All this really does is ignore the data from GET request and input manual values. Could clean the code up and remove the GET request entirely, but that's up to you.
edit line 4973 and 4974:
Code:
curCode = data.split('|')[0];
curDate = data.split('|')[1];
All you have to do is change it to:
Code:
curCode = "FapMode";
curDate = "Supporter";
Code:
/* Move forward only if we have proper fapCode */
if (fapCode != "" && fapCode != null) {
Last edited: