[go: up one dir, main page]

0% found this document useful (0 votes)
90 views1 page

Gift Card Code Generator Script

This code prompts the user to enter a speed value of 1000 or 500 depending on computer speed. It then defines a makeid function that generates a random 14 character string by randomly selecting characters from a possible string. The main function calls makeid to generate an ID and inputs it into an element with ID INPUTBOXNAME, then clicks a submit button with ID SUBMITBUTTONNAME. This main function is called repeatedly using setInterval at the interval specified by the user's speed input.

Uploaded by

glajho
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
90 views1 page

Gift Card Code Generator Script

This code prompts the user to enter a speed value of 1000 or 500 depending on computer speed. It then defines a makeid function that generates a random 14 character string by randomly selecting characters from a possible string. The main function calls makeid to generate an ID and inputs it into an element with ID INPUTBOXNAME, then clicks a submit button with ID SUBMITBUTTONNAME. This main function is called repeatedly using setInterval at the interval specified by the user's speed input.

Uploaded by

glajho
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

alert("Leaked by Mr.

Genius");
var speed = prompt("Type 1,000 if your PC is fast, 500 for a slow pc")
function makeid() {
var text = "";
var possible = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"; //enter the variables of
the gift card *CAN BE CASE SENTITIVE DEPENDING ON THE GC*

for (var i = 0; i < 14; i++) //change the value depending on the length of the
giftcard code
text += possible.charAt(Math.floor(Math.random() * possible.length));

return text;
}

function main() {
document.getElementById("INPUTBOXNAME").value = makeid();
document.getElementById("SUBMITBUTTONNAME").click();
}

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

You might also like