lootbits.io


SUBMITTED BY: newuser00

DATE: Feb. 17, 2023, 2:49 a.m.

FORMAT: Text only

SIZE: 1.5 kB

HITS: 560

  1. // ==UserScript==
  2. // @name Lootbits.io
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description automate the lootbit site
  6. // @author Bboy Tech
  7. // @match https://lootbits.io/dashboard.php*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. this.$ = this.jQuery = jQuery.noConflict(true);
  12. var claimTimer = setInterval (function() {claim(); }, Math.floor(Math.random() * 1000) + 2000);
  13. function claim(){
  14. var number=document.getElementById("lootbits").innerHTML;
  15. var numdown=document.getElementById("countdown_time").innerHTML;
  16. if (numdown === "00:01")
  17. {
  18. location.href = "https://lootbits.io/dashboard.php";
  19. }
  20. else
  21. {
  22. if (number > 0)
  23. {
  24. $( ".confirm" ).click();
  25. $( ".lootbox" ).click();
  26. }
  27. else
  28. {
  29. //do nothing
  30. }
  31. }
  32. if (numdown === "00:01")
  33. {
  34. var href = $('#claimbtn').attr('href');
  35. var newhref = "https://lootbits.io/dashboard.php"+href
  36. location.href = newhref;
  37. }
  38. else
  39. {
  40. //do nothing
  41. }
  42. $( "#id3a8b998253cross3a8b998253" ).click();
  43. }
  44. document.getElementById("lootboxout").click;
  45. if(location.href == "https://bit.ly/2L47tPq")
  46. {
  47. location.href = "https://lootbits.io/dashboard.php";
  48. }
  49. })();

comments powered by Disqus