legendofcibola

Freebitco.in AUTO ROLL (without captcha) + 100 REWARD POINTS

Oct 7th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. // ==UserScript==
  2. // @version 4.5
  3. // @author BillionEarns.blogspot.com
  4. // @match https://freebitco.in/*
  5. // @name Freebitco.in AUTO ROLL (without captcha) + 100 REWARD POINTS + 1000% BONUS 2019 by www.BuyListas.com
  6. // @namespace https://greasyfork.org/users/223895
  7. // @description You need to create an account to work in: https://freebitco.in/?r=2878556
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // @license GPL-3.0
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var body = $('body');
  15. var points = {};
  16. var count_min = 1;
  17. var reward = {};
  18. reward.select = function() {
  19. reward.points = parseInt($('.user_reward_points').text().replace(',',""));
  20. reward.bonustime = {};
  21. if ($("#bonus_container_free_points").length != 0) {
  22. reward.bonustime.text = $('#bonus_span_free_points').text();
  23. reward.bonustime.hour = parseInt(reward.bonustime.text.split(":")[0]);
  24. reward.bonustime.min = parseInt(reward.bonustime.text.split(":")[1]);
  25. reward.bonustime.sec = parseInt(reward.bonustime.text.split(":")[2]);
  26. reward.bonustime.current = reward.bonustime.hour * 3600 + reward.bonustime.min * 60 + reward.bonustime.sec;
  27. } else
  28. reward.bonustime.current = 0;
  29. console.log(reward.bonustime.current);
  30. if (reward.bonustime.current !== 0) {
  31. console.log(reward.bonustime.current);
  32. } else {
  33. if (reward.points < 12) {
  34. console.log("waiting for points");
  35. }
  36. else if (reward.points < 120) {
  37. console.log("waiting for points 60");
  38. RedeemRPProduct('free_points_1');
  39. }
  40. else if (reward.points < 600) {
  41. console.log("waiting for points 120");
  42. RedeemRPProduct('free_points_10');
  43. }
  44. else if (reward.points < 1200) {
  45. console.log("waiting for points 600");
  46. RedeemRPProduct('free_points_50');
  47. }
  48. else {
  49. RedeemRPProduct('free_points_100');
  50. }
  51. if ($('#bonus_span_fp_bonus').length === 0)
  52. if (reward.points >= 4400)
  53. RedeemRPProduct('fp_bonus_1000');
  54. }
  55. };
  56. body.prepend(
  57. $('<div/>').attr('style',"position:fixed;top:45px;left:0;z-index:999;width:350px;background-color:black;color: white; text-align: left;")
  58. .append(
  59. $('<div/>').attr('id','autofaucet')
  60. .append($('<p/>').attr('style','text-decoration:underline;').text("Freebitco.in auto roll 2019 by BillionEarns.blogspot.com"))
  61. .append($('<p/>').text("If you like, consider making a donation to:"))
  62. .append($('<p/>').text("1FZyMZaGvK9c84TYECuaEcyFvXnQgZVMCT"))
  63. .append($('<p/>').text("(Click to copy)"))
  64. .append($('<p/>')
  65. )
  66. ).click(function(){
  67. var $temp = $('<input>').val("1FZyMZaGvK9c84TYECuaEcyFvXnQgZVMCT");
  68. body.append($temp);
  69. $temp.select();
  70. document.execCommand("copy");
  71. $temp.remove();
  72. })
  73. ).prepend($('<style/>')
  74. .text("#autofaucet p { margin: 0; margin-left: 2px; text-align: left; }")
  75. )
  76. setTimeout(reward.select,1000);
  77. setInterval(reward.select,60000);
  78. $(document).ready(function(){
  79. console.log("Status: Page loaded.");
  80. setTimeout(function(){
  81. $('#free_play_form_button').click();
  82. console.log("Status: Button ROLL clicked.");
  83. }, random(2000,4000));
  84. setInterval(function(){
  85. console.log("Status: Elapsed time " + count_min + " minutes");
  86. count_min = count_min + 1;
  87. }, 60000);
  88. setTimeout(function(){
  89. $('.close-reveal-modal')[0].click();
  90. console.log("Status: Button CLOSE POPUP clicked.");
  91. }, random(12000,18000));
  92. setInterval(function(){
  93. $('#free_play_form_button').click();
  94. console.log("Status: Button ROLL clicked again.");
  95. }, random(3605000,3615000));
  96. });
  97. function random(min,max){
  98. return min + (max - min) * Math.random();
  99. }
  100. })();
Add Comment
Please, Sign In to add comment