diff --git a/app/index.html b/app/index.html index 3ea646a..1635135 100644 --- a/app/index.html +++ b/app/index.html @@ -60,8 +60,8 @@ // install endpwn var o = fs.existsSync(data + '/settings.json') ? JSON.parse(fs.readFileSync(data + '/settings.json', 'utf8')) : {}; // load settings.json - o['WEBAPP_ENDPOINT'] = 'https://endpwn.github.io/endpwn3'; // aim the app at stage 0 - o['WEBAPP_PATH'] = '/app?_=' + Date.now(); // cache busting + o['WEBAPP_ENDPOINT'] = location.href + '?'; // aim the app at stage 0 + o['WEBAPP_PATH'] = undefined; // clear old WEBAPP_PATH fs.writeFileSync(data + '/settings.json', JSON.stringify(o, null, 2)); // commit changes to disk try { @@ -82,7 +82,7 @@ window.__monitor = new electron.BrowserWindow({ show: false }); // load the monitor - __monitor.loadURL('https://endpwn.github.io/endpwn3/monitor.htm?_=' + Date.now()); + __monitor.loadURL(location.href+'../monitor.html?_=' + Date.now()); } catch (e) { diff --git a/index.html b/index.html index a3b47ef..ceaf388 100644 --- a/index.html +++ b/index.html @@ -3,15 +3,21 @@ EndPwn3 - + + + - +
ΣndPwn³
Copy and paste the following string into your Discord console:
- DiscordNative.nativeModules.requireModule("discord_/../electron").remote.getCurrentWindow().loadURL('https://endpwn.github.io/endpwn3/app') + please wait...

Credit to bootsy for developing the ASAR-less code injection method (bootsyhax)