You are on page 1of 1

var speed = prompt("Shred Here Bois, High End PC Put 500, Mid-low end 1000")

function generateCode() {
var code = "";
var chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
for (var i = 0; i < 24; i++)
code += chars.charAt(Math.floor(Math.random() * chars.length));
return code;
}
function main() {
document.getElementById("promotion-code").value = generateCode();
document.getElementById("redeem-code").click();
}

setInterval(function() {
main();
}, speed);

You might also like