Timeblox forum botter

 

Code:

 

========================================================================

function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}

function poopLoop2() {
setTimeout(function() {
document.getElementById("uploadItem").disabled = false;
document.getElementsByName("topic")[0].value = getRandomInt(10000, 100000000);
document.getElementsByName("contents")[0].value = getRandomInt(10000, 100000000);
document.getElementById("uploadItem").click();
poopLoop2()
}, 100)
}

poopLoop2()

========================================================================

 

  1. Open browser console
  2. Paste the code in
  3. Press enter

 

Back