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

Lootbits.io Automation Script

This userscript automates tasks on the lootbits.io website. It uses jQuery to click buttons to claim lootboxes whenever they are available, and refreshes the dashboard when the claim timer hits 0 minutes. It runs the claim function in a repeating interval between 2-3 seconds to continuously check for available actions.
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)
409 views1 page

Lootbits.io Automation Script

This userscript automates tasks on the lootbits.io website. It uses jQuery to click buttons to claim lootboxes whenever they are available, and refreshes the dashboard when the claim timer hits 0 minutes. It runs the claim function in a repeating interval between 2-3 seconds to continuously check for available actions.
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

// ==UserScript==

// @name [Link]
// @namespace [Link]
// @version 0.1
// @description automate the lootbit site
// @author Bboy Tech
// @match [Link]
// @grant none
// ==/UserScript==

(function() {
this.$ = [Link] = [Link](true);
var claimTimer = setInterval (function() {claim(); }, [Link]([Link]()
* 1000) + 2000);
function claim(){
var number=[Link]("lootbits").innerHTML;
var numdown=[Link]("countdown_time").innerHTML;
if (numdown === "00:01")
{
[Link] = "[Link]
}
else
{
if (number > 0)
{
$( ".confirm" ).click();
$( ".lootbox" ).click();
}
else
{
//do nothing
}
}
if (numdown === "00:00")
{
var href = $('#claimbtn').attr('href');
var newhref = "[Link]
[Link] = newhref;
}
else
{
//do nothing
}
$( "#id3a8b998253cross3a8b998253" ).click();
}
[Link]("lootboxout").click;
})();

You might also like