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 ▶
[hide]
1) Go here https://www.nvidia.com/en-us/rewards/redeem/
2) Log in to your Nvidia account.
4) Ctrl + shift + j or right click and inspect the element (to open the console).
5) Copy and paste the following code and then click on enter
6) A small box will open on your Nvidia page.
This is the check speed of the codes you set according to your pc
100 - 500: Fast
500 - 1000: gently
⚠Don't worry about the error in the console, if the code is invalide⚠
[/hide]
▶ 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 ▶
[hide]
1) Go here https://www.nvidia.com/en-us/rewards/redeem/
2) Log in to your Nvidia account.
4) Ctrl + shift + j or right click and inspect the element (to open the console).
5) Copy and paste the following code and then click on enter
6) A small box will open on your Nvidia page.
This is the check speed of the codes you set according to your pc
100 - 500: Fast
500 - 1000: gently
⚠Don't worry about the error in the console, if the code is invalide⚠
PHP:
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);
PHP:
▶ LEAVE A LIKE ▶