Hello everyone: :feelsgood:
So I created the script for Nvidia Geforce and I share it with you on C.TO
The script checks the keys on their US site: https://www.nvidia.com/en-us/rewards/redeem/
It checks 500/min the probability of falling on a key is not computable!
The script algorithm and the following one:
0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJIJKLMNOPQRSTUVWXYZ
▶ LEAVE A LIKE ▶
▶ LEAVE A LIKE ▶
So I created the script for Nvidia Geforce and I share it with you on C.TO
The script checks the keys on their US site: https://www.nvidia.com/en-us/rewards/redeem/
It checks 500/min the probability of falling on a key is not computable!
The script algorithm and the following one:
0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJIJKLMNOPQRSTUVWXYZ
▶ LEAVE A LIKE ▶
PHP Code:
var speed = prompt("Speed of checker/gen (Recommended 500 for fast pcs, 1000 for slow)")
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);
▶ LEAVE A LIKE ▶