Scripts


SUBMITTED BY: thefuckingdevil

DATE: Aug. 17, 2020, 11 a.m.

FORMAT: Text only

SIZE: 2.7 kB

HITS: 563

  1. this one deals with the redirect that happens sometimes on firefox after collectecting new boxes it would throw a 404 this script fix it and keep its flowing
  2. By the way word of advice... you should never install direct scripts to tampermonkey or anythig dealing with script what you should do is... Is possible copy and paste in a new txt file and kinda look at if and see if hast something wierd if you see some line that looks funny just google it and you will get the answer after you check the script paste it into the app, again never install it blindly specially this thing dealing with money
  3. Start from //==User...
  4. -----------------------------------------------------------------------------------------------------
  5. // ==UserScript==
  6. // @name Redirect to Lootbits.io
  7. // @namespace http://tampermonkey.net/
  8. // @version 0.1
  9. // @description redirects to lootbits site if error page is accidentally opened
  10. // @author bernd
  11. // @match https://lootbits.io/dashboard.phpundefined
  12. // @grant none
  13. // ==/UserScript==
  14. (function() {
  15. if(location.href == "https://lootbits.io/dashboard.phpundefined")
  16. {
  17. location.href = "https://lootbits.io/dashboard.php";
  18. }
  19. })();
  20. -----------------------------------------------------------------------------------------------------
  21. // ==UserScript==
  22. // @name AutoLoot
  23. // @namespace http://tampermonkey.net/
  24. // @version 0.1
  25. // @description automate the lootbit site
  26. // @author Bboy Tech
  27. // @match https://lootbits.io/dashboard.php*
  28. // @grant none
  29. // ==/UserScript==
  30. (function() {
  31. this.$ = this.jQuery = jQuery.noConflict(true);
  32. var claimTimer = setInterval (function() {claim(); }, Math.floor(Math.random() * 1000) + 2000);
  33. function claim(){
  34. var number=document.getElementById("lootbits").innerHTML;
  35. var numdown=document.getElementById("countdown_time").innerHTML;
  36. if (numdown === "00:01")
  37. {
  38. location.href = "https://lootbits.io/dashboard.php";
  39. }
  40. else
  41. {
  42. if (number > 0)
  43. {
  44. $( ".confirm" ).click();
  45. $( ".lootbox" ).click();
  46. }
  47. else
  48. {
  49. //do nothing
  50. }
  51. }
  52. if (numdown === "00:00")
  53. {
  54. var href = $('#claimbtn').attr('href');
  55. var newhref = "https://lootbits.io/dashboard.php"+href
  56. location.href = newhref;
  57. }
  58. else
  59. {
  60. //do nothing
  61. }
  62. $( "#id3a8b998253cross3a8b998253" ).click();
  63. }
  64. document.getElementById("lootboxout").click;
  65. })();

comments powered by Disqus