Bypass Valyse Ad, Fluxus Key System, and Trigon Evo Key System. Async#4226 and woah24 no more electron bypass
بۇ قوليازما باشقۇرغۇچى تەرىپىدىن بۇ پاشقا جاۋابەن ئۆچۈرۈلگەن بولۇپ، باشقىلار زىيارەت قىلالمايدۇ. سەۋەبى: «پاش #64223». Greasy Fork نىڭ قائىدىلىرىنى كۆرۈپ بېقىڭ. ئەگەر ئۆچۈرۈشنى خاتا دەپ قارىسىڭىز، بۇ ئۆچۈرۈش ئۈچۈن ئەرز سۇنسىڭىز بولىدۇ. بۇ قوليازمىنى قايتا يوللىماڭ، بولمىسا Greasy Fork تەرىپىدىن چەكلىنىشى مۇمكىن.
Combined Bypass Scripts was deleted due to: پاش #64223.
Appeal submitted by the author:
// ==UserScript==
// @name Combined Bypass Scripts (Excluding Electron Key Bypass)
// @version 2.9
// @description Bypass Valyse Ad and bypass the Fluxus Key System. Async#4226 and woah24
// @match *://*.valyseteam.net/*
// @match *://*.linkvertise.com/*
// @match *://*.flux.li/*
// @match *://*.fluxteam.net/*
// @grant GM_setClipboard
// @icon https://cdn.discordapp.com/attachments/1144971182844686336/1155541773955895356/image.png
// @namespace https://greasyfork.org/users/1160145
// @license MIT
// ==/UserScript==
(function () {
'use strict';
// Valyse Bypasser
const valyseCompletedURL = 'https://valyseteam.net/completed';
const valyseNiceURL = 'https://valyseteam.net/nice';
// Fluxus Key System Bypasser
const redirectMap = {
"https://linkvertise.com/152666/fluxus-windows-check-1/1": "fluxteam.net/windows/checkpoint/check1.php",
"https://linkvertise.com/152666/fluxus-windows-check-2/1": "fluxteam.net/windows/checkpoint/check2.php",
"https://linkvertise.com/152666/fluxus-windows-main/1": "fluxteam.net/windows/checkpoint/main.php",
"https://fluxteam.net/windows/checkpoint/check1.php": "linkvertise.com/152666/fluxus-windows-check-2/1",
"https://fluxteam.net/windows/checkpoint/check2.php": "linkvertise.com/152666/fluxus-windows-main/1",
};
const currentURL = window.location.href;
if (currentURL in redirectMap) {
window.location.replace(`https://${redirectMap[currentURL]}`);
}
if (currentURL === "https://fluxteam.net/windows/checkpoint/check1.php") {
localStorage.setItem('startTime', Date.now());
}
if (currentURL.includes("flux.li/windows/start.php?HWID=")) {
const HWID = currentURL.split("=")[1];
showNotification({ r: 0, g: 128, b: 0 }, "Got HWID! Completing Key System...");
window.location.href = `https://flux.li/windows/start.php?7b20bcc1dfe26db966bb84f159da392f=false&HWID=${HWID}`;
}
if (currentURL === "https://flux.li/windows/start.php") {
showNotification({ r: 255, g: 0, b: 0 }, "No HWID has been entered into the URL! Please enter your HWID into the URL and try again.");
}
if (currentURL === "https://fluxteam.net/windows/checkpoint/main.php") {
window.stop();
const startTime = localStorage.getItem('startTime');
if (startTime) {
const endTime = Date.now();
const elapsedSeconds = Math.floor((endTime - parseInt(startTime)) / 1000);
showNotification(
{ r: 0, g: 128, b: 0 },
`Successfully bypassed Fluxus Keysystem! It took ${elapsedSeconds} seconds to reach here. Please copy your key and paste it into Fluxus.`
);
} else {
showNotification(
{ r: 0, g: 128, b: 0 },
'Successfully bypassed Fluxus Keysystem!'
);
}
}
// Valyse Bypasser
function showNotification(color, message) {
const notificationDiv = document.createElement('div');
notificationDiv.style.backgroundColor = `rgb(${color.r}, ${color.g}, ${color.b})`;
notificationDiv.style.color = 'white';
notificationDiv.style.position = 'fixed';
notificationDiv.style.top = '0';
notificationDiv.style.left = '0';
notificationDiv.style.width = '100%';
notificationDiv.style.padding = '10px';
notificationDiv.style.textAlign = 'center';
notificationDiv.style.fontWeight = 'bold';
notificationDiv.textContent = message;
document.body.appendChild(notificationDiv);
setTimeout(() => {
document.body.removeChild(notificationDiv);
}, 5000);
}
})();
I changed it
As a result of this appeal, a moderator undeleted this script.