[NEW] BTCSpinner Bot [0.00063934 per 100 spins]


SUBMITTED BY: thelostcarlos

DATE: May 14, 2021, 2:14 p.m.

UPDATED: May 14, 2021, 2:28 p.m.

FORMAT: Text only

SIZE: 4.1 kB

HITS: 645

  1. SIGN UP TO BTCSPINNER (PLEASE USE MY LINK) [url=https://btcspinner.io/invite/1214628]MY LINK[/url]
  2. INSTALL TAMPERMONKEY IF YOU DONT HAVE IT. [url=https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en]TamperMonkey plugin[/url]
  3. CREATE NEW SCRIPT IN T.M
  4. COPY & PASTE SCRIPT
  5. GO TO FILE
  6. THEN SAVE.
  7. BOOOM, BOT IS WORKING
  8. YOU NEED TO OPEN STORE PAGE ONCE YOU HAVE USED ALL YOUR FREE SIGN UP SPINS.
  9. IT WILL COLLECT SPINS & THEN OPEN ANOTHER TAB WITH SPINNER. (YOU MUST ALLOW POP UPS FOR SITE)
  10. // ==UserScript==
  11. // @name BTCSpinner
  12. // @namespace http://tampermonkey.net/
  13. // @version 0.1
  14. // @description Writen for https://btcspinner.io/invite/1214628
  15. // @description This script will collect your spins each hour and then open a seperate tab and use the spins
  16. // @description after which it will close the spinner tab and wait for the next refill of spins.
  17. // @description Donations accepted at
  18. // @description
  19. // @description BTC -
  20. // @description DOGE -
  21. // @description LTC -
  22. // @description ETH -
  23. // @description Or sign up at https://crypto.com/app/rcjpdjqdc7 and we both get $25 USD
  24. // @author Salagrie
  25. // @match https://btcspinner.io/*
  26. // @icon https://www.google.com/s2/favicons?domain=btcspinner.io
  27. // @grant none
  28. // ==/UserScript==
  29. (function() {
  30. var looper = 0;
  31. var spins = parseInt(document.querySelector("#app > main > div > div:nth-child(1) > div > div > div.col-auto.m-0.p-3.text-left.text-info > a > h4").innerText);
  32. function start() {
  33. if (document.querySelector("#faucet")) {
  34. document.querySelector("#faucet").click();
  35. }
  36. setTimeout(function(){
  37. start();
  38. },1000);
  39. }
  40. function spinner() {
  41. spins = parseInt(document.querySelector("#app > main > div > div:nth-child(1) > div > div > div.col-auto.m-0.p-3.text-left.text-info > a > h4").innerText);
  42. if (spins == 0 && window.location.href == "https://btcspinner.io/spinner") {
  43. setTimeout(function(){
  44. window.close();
  45. },20000);
  46. }
  47. looper = looper + 1;
  48. if (spins > 0) {
  49. if (!document.querySelector("#app > main > div > div:nth-child(3) > div.col-lg-6.py-4 > div.game-container.mb-5 > div.row.justify-content-center.text-center.pt-4 > div > button").disabled) {
  50. document.querySelector("#app > main > div > div:nth-child(3) > div.col-lg-6.py-4 > div.game-container.mb-5 > div.row.justify-content-center.text-center.pt-4 > div > button").click();
  51. looper = 0;
  52. }
  53. if (document.querySelector("body > div.swal2-container.swal2-center.swal2-backdrop-show > div > div.swal2-actions > button.swal2-confirm.swal2-styled")) {
  54. document.querySelector("body > div.swal2-container.swal2-center.swal2-backdrop-show > div > div.swal2-actions > button.swal2-confirm.swal2-styled").click();
  55. looper = 0;
  56. }
  57. if (document.querySelector("#buttons > div > button")) {
  58. document.querySelector("#buttons > div > button").click();
  59. looper = 0;
  60. }
  61. if (document.querySelector("#swal2-content > div.row.pt-2 > div:nth-child(2) > button")) {
  62. document.querySelector("#swal2-content > div.row.pt-2 > div:nth-child(2) > button").click();
  63. looper = 0;
  64. }
  65. }
  66. if (looper > 40 && window.location.href == "https://btcspinner.io/spinner") {
  67. setTimeout(function() {
  68. location.reload();
  69. }, 1000);
  70. }
  71. setTimeout(function(){
  72. spinner();
  73. },3000);
  74. }
  75. if (window.location.href != "https://btcspinner.io/spinner") {
  76. setTimeout(function(){
  77. window.open("https://btcspinner.io/spinner");
  78. },10000);
  79. }
  80. setTimeout(function(){
  81. start();
  82. },1000);
  83. setTimeout(function(){
  84. spinner();
  85. },10000);
  86. })();

comments powered by Disqus