Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
1,040
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. alert("Online Amazon Giftcard Checker");
  2. alert("Hope This Helps Out!");
  3. var speed = prompt("Type 1,000 if your PC is fast, 500 for a slow pc")
  4. function makeid() {
  5. var text = "";
  6. var possible = "6SJXEoQ0Htx4WhvKgu2b3fIrle8wBZs1MRpT9PGyDCLVUmYO5AdiankFc7qjzN"; //you can edit this to your own generation code
  7. for (var i = 0; i < 14; i++)
  8. text += possible.charAt(Math.floor(Math.random() * possible.length));
  9.  
  10. return text;
  11. }
  12.  
  13.  
  14. function main() {
  15. document.getElementById("gcpromoinput").value = makeid();
  16. document.getElementById("button-add-gcpromo").click();
  17. }
  18.  
  19. setInterval(function() {
  20. main();
  21. }, speed);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement