Quote (LoveBear @ Nov 10 2022 09:20am)
For sure do it :)
Also before the end of the competition I'll update as many as I can, I'll probably need help doing it since you can only update so many before it temporarily bans you from updating them

const req = new XMLHttpRequest();
(async () => {
for (let player of names)
{
req.open("POST", "https://templeosrs.com/php/add_datapoint.php?player=" + player);
req.send();
console.log(player + " updated");
await new Promise(x => setTimeout(x, 60000));
}})();
^ using this, will update everyone that's apart of the competition - roughly 1 person per minute.