Greasy Fork is available in English.
A userscript to add Sexy back to bonk.io
// ==UserScript==
// @name bonk-sexy
// @version 1.0.4
// @author Blu
// @description A userscript to add Sexy back to bonk.io
// @match https://bonk.io/gameframe-release.html
// @run-at document-start
// @grant none
// @namespace http://greasyfork.icu/users/826975
// ==/UserScript==
// for use as a userscript ensure you have Excigma's code injector userscript
// http://greasyfork.icu/en/scripts/433861-code-injector-bonk-io
const injectorName = `Sexy`;
const errorMsg = `Whoops! ${injectorName} was unable to load.
This may be due to an update to Bonk.io. If so, please report this error!
This could also be because you have an extension that is incompatible with \
${injectorName}`;
function injector(src){
let newSrc = src;
const modeName = "bs";
// locate beginning of requirejs function
const REQUIREJS_REGEX = /"use strict";var ([\w]+)=([\w]+);/;
let requirejsMatch = newSrc.match(REQUIREJS_REGEX);
let localObject = requirejsMatch[1];
let globalObject = requirejsMatch[2];
// get string function indices of each vanilla mode
const MODENAME_REGEX = /(\d+)\)]={lobbyName:/g;
let modenameMatch = newSrc.match(MODENAME_REGEX).map(x=>x.split(")")[0]);
let modeIndices = {
b: modenameMatch[0],
v: modenameMatch[1],
sp: modenameMatch[2],
ar: modenameMatch[3],
ard: modenameMatch[4],
bs: modenameMatch[5],
f: modenameMatch[6]
};
// locate lobbyModes array initialisation
const LASTMODE_REGEX = `${localObject}\\.[\\w$]{1,3}\\(${modeIndices.f}\\)`;
const MODEARRAY_REGEX = new RegExp(`=\\[(${localObject}\\.[\\w$]{1,3}\\(${modeIndices.b}\\).*?),(${LASTMODE_REGEX})]`);
let modearrayMatch = newSrc.match(MODEARRAY_REGEX);
// Adds Sexy to mode selection button
newSrc = newSrc.replace(modearrayMatch[0], `=[${modearrayMatch[1]},"${modeName}",${modearrayMatch[2]}]`);
// locate Sexy mode data initialisation
const SEXYDATA_REGEX = new RegExp(`(${modeIndices[modeName]}\\)]={lobbyName:${localObject}\\.[\\w$]{1,3}\\(.*?),editorCanTarget:false}`);
let sexydataMatch = newSrc.match(SEXYDATA_REGEX);
// Adds Sexy to map editor "For mode:" selector
newSrc = newSrc.replace(sexydataMatch[0], `${sexydataMatch[1]},editorCanTarget:true}`);
if(src === newSrc) throw "Injection failed!";
console.log(injectorName+" injector run");
return newSrc;
}
// Compatibility with Excigma's code injector userscript
if(!window.bonkCodeInjectors) window.bonkCodeInjectors = [];
window.bonkCodeInjectors.push(bonkCode => {
try {
return injector(bonkCode);
} catch (error) {
alert(errorMsg);
throw error;
}
});
console.log(injectorName+" injector loaded");