Well, this is just something I wrote in 5 minutes for MyBB.
All it does is make a silent asynchronous request to misc.php after every request you make,
which overwrites the location on your profile.
If you want a preview, go on my profile and look at my location.
I made it for Greasemonkey on Firefox, but it may work on other browsers aswell, idk.
Here's the script.
// ==UserScript==
// @name     NulledBB
// @namespace  NulledBB
// @version   6.9
// @include .*://nulledbb.com/.*
// @grant    none
// ==/UserScript==
// written by Remi~
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://nulledbb.com/misc.php", true);
xhr.onload = function (e) {
if (xhr.readyState === 4) {
 if (xhr.status === 200) {
 Â
 }
}
};
xhr.onerror = function (e) {
console.error(xhr.statusText);
};
xhr.send(null);
Instructions:
[spoiler]
Loading Image
Loading Image
Loading Image
Then just press Save and you're done.
If you don't see the button on step 3, make sure you've copied the script.
[/spoiler]
That is all c:
Also, yes, you can make the javascript look nicer and you can delete some of it since I was too lazy to remove it when I was debugging shit.
Don't worry, it wont slow down your pc or some shit like that.
Fun fact: I got banned on nulledbb for posting and using the script above :p
Senpai allows it though~