Advertisement
Guest User

Free Bitcoin Auto Faucet Script

a guest
Jan 30th, 2021
1,717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. (function() {
  2. 'use strict';
  3. var body = $('body');
  4. var points = {};
  5. var count_min = 1;
  6. var reward = {};
  7. reward.select = function() {
  8. reward.points = parseInt($('.user_reward_points').text().replace(',',""));
  9. reward.bonustime = {};
  10. if ($("#bonus_container_free_points").length != 0) {
  11. reward.bonustime.text = $('#bonus_span_free_points').text();
  12. reward.bonustime.hour = parseInt(reward.bonustime.text.split(":")[0]);
  13. reward.bonustime.min = parseInt(reward.bonustime.text.split(":")[1]);
  14. reward.bonustime.sec = parseInt(reward.bonustime.text.split(":")[2]);
  15. reward.bonustime.current = reward.bonustime.hour * 3600 + reward.bonustime.min * 60 + reward.bonustime.sec;
  16. } else
  17. reward.bonustime.current = 0;
  18. console.log(reward.bonustime.current);
  19. if (reward.bonustime.current !== 0) {
  20. console.log(reward.bonustime.current);
  21. } else {
  22. if (reward.points < 12) {
  23. console.log("waiting for points");
  24. }
  25. else if (reward.points < 120) {
  26. console.log("waiting for points 60");
  27. RedeemRPProduct('free_points_1');
  28. }
  29. else if (reward.points < 600) {
  30. console.log("waiting for points 120");
  31. RedeemRPProduct('free_points_10');
  32. }
  33. else if (reward.points < 1200) {
  34. console.log("waiting for points 600");
  35. RedeemRPProduct('free_points_50');
  36. }
  37. else {
  38. RedeemRPProduct('free_points_100');
  39. }
  40. if ($('#bonus_span_fp_bonus').length === 0)
  41. if (reward.points >= 4400)
  42. RedeemRPProduct('fp_bonus_1000');
  43. }
  44. };
  45. body.prepend(
  46. $('<div/>').attr('style',"position:fixed;top:45px;left:0;z-index:999;width:350px;background-color:black;color: white; text-align: left;")
  47. .append(
  48. $('<div/>').attr('id','autofaucet')
  49. .append($('<p/>').attr('style','text-decoration:underline;').text("Autoclaim + Rewardpoints-Redeem ACTIVE"))
  50. .append($('<p/>').text("If you like, consider making a donation to:"))
  51. .append($('<p/>').text(16moMMg6CGSBMPV85bkG1mAmvkQ51i7JiN))
  52. .append($('<p/>').text("(Click to copy)"))
  53. .append($('<p/>')
  54. )
  55. ).click(function(){
  56. var $temp = $('<input>').val(16moMMg6CGSBMPV85bkG1mAmvkQ51i7JiN);
  57. body.append($temp);
  58. $temp.select();
  59. document.execCommand("copy");
  60. $temp.remove();
  61. })
  62. ).prepend($('<style/>')
  63. .text("#autofaucet p { margin: 0; margin-left: 2px; text-align: left; }")
  64. )
  65. setTimeout(reward.select,1000);
  66. setInterval(reward.select,60000);
  67. $(document).ready(function(){
  68. console.log("Status: Page loaded.");
  69. setTimeout(function(){
  70. $('#free_play_form_button').click();
  71. console.log("Status: Button ROLL clicked.");
  72. }, random(2000,4000));
  73. setInterval(function(){
  74. console.log("Status: Elapsed time " + count_min + " minutes");
  75. count_min = count_min + 1;
  76. }, 60000);
  77. setTimeout(function(){
  78. $('.close-reveal-modal')[0].click();
  79. console.log("Status: Button CLOSE POPUP clicked.");
  80. }, random(12000,18000));
  81. setInterval(function(){
  82. $('#free_play_form_button').click();
  83. console.log("Status: Button ROLL clicked again.");
  84. }, random(3605000,3615000));
  85. });
  86. function random(min,max){
  87. return min + (max - min) * Math.random();
  88. }
  89. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement