Advertisement
Guest User

15 Site Auto Faucet Claim Script

a guest
Feb 12th, 2021
4,108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.38 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 15 Page Multi Faucet Roller V4 (GRAB FREE MONEY EVER HOUR AUTOMATICALLY!)
  3. // @description Redeem free money every houre with script, follow the links to get BTC ETH XRP USDT USDC BNB XEM STEAM ADA TRX
  4. // @description Get free Crypto every hour on 15 Pages
  5. // @description Before running the script, sign up for all accounts and verify your email. Then open up the TamperMonkey Extension and add new script. Paste everything here into script window and save.
  6. // @description Keep the pages opened. Reload one of them and you should see the script start to claim your bonuses.
  7. // @description Working on the folling pages: please use my Link to support my work and as little thanks for puplishing the script
  8. // @description Freebitco.in only works if your account got captcha enabled. I gonna include a ReCaptcha solver in one of the next Updates
  9. // @description Coin: ADA https://freecardano.com/?ref=272542
  10. // @description Coin: STEAM https://freesteam.io/?ref=94542
  11. // @description Coin: TRX https://free-tron.com/?ref=143811
  12. // @description Coin: USDT https://freetether.com/?ref=140262
  13. // @description Coin: BTC https://freebitcoin.io/?ref=416713
  14. // @description Coin: XRP https://coinfaucet.io/?ref=743901
  15. // @description Coin: ETH https://freeethereum.com/?ref=141661
  16. // @description Coin: BNB https://freebinancecoin.com/?ref=97698
  17. // @description Coin: XEM https://freenem.com/?ref=265732
  18. // @description Coin: DASH https://freedash.io/?ref=81592
  19. // @description Coin: BTC https://freebitco.in/?r=799646
  20. // @description Coin: USDC https://freeusdcoin.com/?ref=97366
  21. // @description Coin: NEO https://freeneo.io/?ref=60341
  22. // @description Coin: LINK https://freechainlink.io/?ref=50464
  23. // @description Coin: LTC https://free-ltc.com/?ref=64804
  24. // @match https://example.com
  25. // @match http://example.com
  26. // @match https://freebitco.in/*
  27. // @match https://free-tron.com/free
  28. // @match https://freecardano.com/free
  29. // @match https://coinfaucet.io/free
  30. // @match https://freebitcoin.io/free
  31. // @match https://freesteam.io/free
  32. // @match https://freetether.com/free
  33. // @match https://freeusdcoin.com/free
  34. // @match https://freebinancecoin.com/free
  35. // @match https://freedash.io/free
  36. // @match https://freeethereum.com/free
  37. // @match https://freenem.com/free
  38. // @match https://freechain.link/free
  39. // @match https://freeneo.io/free
  40. // @match https://free-ltc.com/
  41. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  42. // @grant window.close
  43. // @run-at document-start
  44. // ==/UserScript==
  45. addJS_Node (null, null, overrideSelectNativeJS_Functions);
  46. function overrideSelectNativeJS_Functions () {
  47. window.alert = function alert (message) {
  48. console.log (message);
  49. }
  50. }
  51. function addJS_Node (text, s_URL, funcToRun) {
  52. var D = document;
  53. var scriptNode= D.createElement ('script');
  54. scriptNode.type= "text/javascript";
  55. if (text)scriptNode.textContent= text;
  56. if (s_URL)scriptNode.src= s_URL;
  57. if (funcToRun)scriptNode.textContent = '(' + funcToRun.toString() + ')()';
  58.  
  59. var targ = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;
  60. targ.appendChild (scriptNode);
  61. }
  62.  
  63. var count_min = 1;
  64.  
  65. function ada(){
  66. return new Promise(res => {
  67. setTimeout(function(){
  68. var win = window.open("https://freecardano.com/free");
  69. setTimeout(function(){
  70. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  71. }, random(2000,4000));
  72. setTimeout(function () { win.close();}, 20000);
  73. res();
  74. }, 20000);
  75. })
  76. }
  77.  
  78. function steam(){
  79. setTimeout(function(){
  80. var win = window.open("https://freesteam.io/free");
  81. setTimeout(function(){
  82. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  83. }, random(2000,4000));
  84. setTimeout(function () { win.close();}, 20000);
  85. },40000);
  86. }
  87.  
  88. function trx(){
  89. setTimeout(function(){
  90. var win = window.open("https://free-tron.com/free");
  91. setTimeout(function(){
  92. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  93. }, random(2000,4000));
  94. setTimeout(function () { win.close();}, 20000);
  95. },60000);
  96. }
  97.  
  98. function usdt(){
  99. setTimeout(function(){
  100. var win = window.open("https://freetether.com/free");
  101. setTimeout(function(){
  102. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  103. }, random(2000,4000));
  104. setTimeout(function () { win.close();}, 20000);
  105. },80000);
  106. }
  107.  
  108. function btc(){
  109. setTimeout(function(){
  110. var win = window.open("https://freebitcoin.io/free");
  111. setTimeout(function(){
  112. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  113. }, random(2000,4000));
  114. setTimeout(function () { win.close();}, 20000);
  115. },100000);
  116. }
  117.  
  118. function xrp(){
  119. setTimeout(function(){
  120. var win = window.open("https://coinfaucet.io/free");
  121. setTimeout(function(){
  122. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  123. }, random(2000,4000));
  124. setTimeout(function () { win.close();}, 20000);
  125. },120000);
  126. }
  127.  
  128. function eth(){
  129. setTimeout(function(){
  130. var win = window.open("https://freeethereum.com/free");
  131. setTimeout(function(){
  132. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  133. }, random(2000,4000));
  134. setTimeout(function () { win.close();}, 20000);
  135. },140000);
  136. }
  137.  
  138. function bnb(){
  139. setTimeout(function(){
  140. var win = window.open("https://freebinancecoin.com/free");
  141. setTimeout(function(){
  142. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  143. }, random(2000,4000));
  144. setTimeout(function () { win.close();}, 20000);
  145. },160000);
  146. }
  147.  
  148. function xem(){
  149. setTimeout(function(){
  150. var win = window.open("https://freenem.com/free");
  151. setTimeout(function(){
  152. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  153. }, random(2000,4000));
  154. setTimeout(function () { win.close();}, 20000);
  155. },180000);
  156. }
  157.  
  158. function dash(){
  159. setTimeout(function(){
  160. var win = window.open("https://freedash.io/free");
  161. setTimeout(function(){
  162. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  163. }, random(2000,4000));
  164. setTimeout(function () { win.close();}, 20000);
  165. },200000);
  166. }
  167.  
  168. function usdc(){
  169. setTimeout(function(){
  170. var win = window.open("https://freeusdcoin.com/free");
  171. setTimeout(function(){
  172. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  173. }, random(2000,4000));
  174. setTimeout(function () { win.close();}, 20000);
  175. },220000);
  176. }
  177.  
  178. function neo(){
  179. setTimeout(function(){
  180. var win = window.open("https://freeneo.io/free");
  181. setTimeout(function(){
  182. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  183. }, random(2000,4000));
  184. setTimeout(function () { win.close();}, 20000);
  185. },240000);
  186. }
  187.  
  188. function link(){
  189. setTimeout(function(){
  190. var win = window.open("https://freechain.link/free");
  191. setTimeout(function(){
  192. document.getElementsByClassName("main-button-2 roll-button bg-2")[0].click();
  193. }, random(2000,4000));
  194. setTimeout(function () { win.close();}, 20000);
  195. },260000);
  196. }
  197.  
  198. function fbtc(){
  199. setTimeout(function(){
  200. var win = window.open("https://freebitco.in");
  201. setTimeout(function(){
  202. $('#free_play_form_button').click();
  203. RedeemRPProduct('free_points_100');
  204. RedeemRPProduct('free_lott_100')
  205. }, random(2000,4000));
  206. setTimeout(function () { win.close();}, 20000);
  207. },280000);
  208. }
  209.  
  210. function wait(){
  211. setTimeout(function(){
  212. var win = window.open("https://free-ltc.com/free");
  213. setTimeout(function(){
  214. $('#free_play_form_button').click();
  215. RedeemRPProduct('free_points_100');
  216. RedeemRPProduct('free_lott_100')
  217. }, random(2000,4000));
  218. setTimeout(function () { win.close();}, 3350000);
  219. },300000);
  220. }
  221.  
  222. async function free(){
  223. await ada();
  224. steam();
  225. trx();
  226. usdt();
  227. btc();
  228. xrp();
  229. eth();
  230. bnb();
  231. xem();
  232. dash();
  233. usdc();
  234. neo();
  235. link();
  236. fbtc();
  237. wait();
  238. }
  239. free();
  240.  
  241.  
  242. setInterval(function(){
  243. console.log("Status: Elapsed time " + count_min + " seconds");
  244. count_min = count_min + 1;
  245. }, 1000);
  246.  
  247.  
  248. function random(min,max){
  249. return min + (max - min) * Math.random();
  250. }
  251.  
  252. setTimeout (function() {
  253. 'use strict';
  254. var domain = (window.location != window.parent.location) ? document.referrer.toString() : document.location.toString();
  255. var body = $('body');
  256. setTimeout (function () {body.prepend(
  257. $('<div/>').attr('style',"position:fixed;top:0px;left:0;right:0;z-index:999;width:100%;background-color:black;color: black; text-align: center;")
  258. .append(
  259. $('<div/>').attr('id','autofaucet')
  260. .append($('<p/>').text("***"))
  261. .append($('<p/>').attr('style','text-decoration:underline;color: red').text("14 PAGE CRYPTO MONEY GRABBER SCRIPT"))
  262. .append($('<p/>').text("TRX USDT BTC XRP ETH BNB XEM DASH USDC NEO LINK STEAM EVERY HOURE"))
  263. .append($('<p/>').text("***"))
  264. .append($('<p/>').text("***"))
  265. .append($('<p/>').attr('style','text-decoration:underline;color: red').text("IF YOU DIDNT GOT YOUR ACCOUNTS YET, DEACTIVATE THE SCRIPT NOW AND KLICK ON *KLICK HERE* BELOW"))
  266. .append($('<p/>').attr('style','text-decoration:underline;color: red').text("POPUP NEEDS TO BE ENABLED FOR WWW.EXAMPLE.COM"))
  267. .append($('<p/>').text("***"))
  268. .append($('<p/>').text("MORE PAGES GONNA BE ADDED SOON"))
  269. .append($('<p/>').text("***"))
  270. .append($('<p/>').attr('style','text-decoration:underline;color: red').text("CREATE ACCOUNTS ON ALL PAGES ON *KLICK HERE*"))
  271. .append($('<p/>').text("***"))
  272. .append($('<p/>').text("***"))
  273. .append($('<p/>').attr('style','text-decoration:underline;color: green').text("(KLICK HERE)"))
  274. .append($('<p/>').text("***"))
  275. .append($('<p/>').text("***"))
  276. .append($('<p/>').attr('style','text-decoration:underline;color: red').text("AFTER CREATING ALL ACCOUNTS JUST LOGIN"))
  277. .append($('<p/>').attr('style','text-decoration:underline;color: red').text("WHEN ALL ACCOUNTS LOGGED IN OPEN PAGE https://example.com/ AND WAIT FOR 1 MINUTE FOR THE BOT TO START"))
  278. .append($('<p/>').text("***"))
  279. .append($('<p/>').text("(FOLLOW LIKE AND SHARE THE SHOWN PAGE AT THE END THANKS!)"))
  280. .append($('<p/>')
  281. )
  282. ).click(function(){
  283. window.open("https://freecardano.com/?ref=272542");
  284. window.open("https://freesteam.io/?ref=94542");
  285. window.open("https://free-tron.com/?ref=143811");
  286. window.open("https://freetether.com/?ref=140262");
  287. window.open("https://freebitcoin.io/?ref=416713");
  288. window.open("https://coinfaucet.io/?ref=743901");
  289. window.open("https://freeethereum.com/?ref=141661");
  290. window.open("https://freebinancecoin.com/?ref=97698");
  291. window.open("https://freenem.com/?ref=265732");
  292. window.open("https://freedash.io/?ref=81592");
  293. window.open("https://freebitco.in/?r=799646");
  294. window.open("https://freeusdcoin.com/?ref=97366");
  295. window.open("https://freeneo.io/?ref=60341");
  296. window.open("https://freechainlink.io/?ref=50464");
  297. var $temp = $('<input>').val("https://example.com/");
  298. body.append($temp);
  299. $temp.select();
  300. document.execCommand("copy");
  301. $temp.remove();
  302. })
  303. ).prepend($('<style/>')
  304. .text("#autofaucet p { margin: 0; margin-left: 2px; text-align: center; }")
  305. )
  306. },100);
  307.  
  308. function random(min,max){
  309. return min + (max - min) * Math.random();
  310. }
  311.  
  312. },100);
  313.  
  314.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement