XRP FAUCET BOT


SUBMITTED BY: PimpDaddy

DATE: Nov. 25, 2021, 11:25 p.m.

FORMAT: Text only

SIZE: 3.2 kB

HITS: 620

  1. Sign up here: https://freecrypto.site/704899
  2. Ad Script to tamper monkey.
  3. Direct to:https://my.dropz.xyz/site-friends/ for auto start
  4. // ==UserScript==
  5. // @name XRP-Ripple Faucet
  6. // @namespace xrp faucet
  7. // @version 0.3
  8. // @description XRP Ripple Faucet
  9. // @author engageub
  10. // @match https://my.dropz.xyz/site-friends/
  11. // @grant none
  12. // ==/UserScript==
  13. (function() {
  14. 'use strict';
  15. //Reload the page after 3 minutes
  16. setTimeout(function(){
  17. window.location.reload();
  18. },180000);
  19. var windowName = "";
  20. var popUpWindow = "";
  21. var currentwindowOpenFunction = window.open;
  22. function newwindowOpenFunction(params1, params2) {
  23. //Close Current Window before opening a new window
  24. if(popUpWindow && !popUpWindow.closed) {
  25. popUpWindow.close();
  26. }
  27. if (!params2 || params2 == "_blank") {
  28. windowName = "popUpWindowMyDropz";
  29. } else {
  30. windowName = params2;
  31. }
  32. popUpWindow = currentwindowOpenFunction(params1, windowName);
  33. return popUpWindow;
  34. };
  35. window.open = newwindowOpenFunction;
  36. window.onbeforeunload = function() {
  37. if(popUpWindow && !popUpWindow.closed) {
  38. popUpWindow.close();
  39. }
  40. };
  41. function endsWithNumber( str ){
  42. return isNaN(str.slice(-1)) ? false : true;
  43. }
  44. var clicked = false;
  45. setInterval(function(){
  46. for(let i=0; i< document.querySelectorAll(".btn.btn-app").length; i++){
  47. if(!endsWithNumber(document.querySelectorAll(".btn.btn-app")[i].getAttribute('id'))){
  48. document.querySelectorAll(".btn.btn-app")[i].click();
  49. break;
  50. }
  51. }
  52. for(var hc=0; hc < document.querySelectorAll("iframe").length; hc++){
  53. if(!clicked && document.querySelectorAll("iframe")[hc] &&
  54. document.querySelectorAll("iframe")[hc].hasAttribute("data-hcaptcha-response") &&
  55. document.querySelectorAll("iframe")[hc].getAttribute("data-hcaptcha-response").length > 0 &&
  56. document.querySelector("button.btn.btn-success.btn-xs")) {
  57. document.querySelector("button.btn.btn-success.btn-xs").click();
  58. clicked = true;
  59. }
  60. }
  61. },7000);
  62. function randomInteger(min, max) {
  63. return Math.floor(Math.random() * (max - min + 1)) + min;
  64. }
  65. //Autowithdraw randomly when the balance is between 5000 and 10000
  66. setTimeout(function(){
  67. if(document.querySelector("#display_pending_drops") && document.querySelector("#display_pending_drops").innerText){
  68. var balance = document.querySelector("#display_pending_drops").innerText;
  69. balance = balance.split(".");
  70. balance[0] = balance[0].replaceAll(",","");
  71. balance[0] = Number(balance[0]);
  72. if(balance[0] > randomInteger(5000,10000) && document.querySelector("#payout_bt")){
  73. document.querySelector("#payout_bt").click();
  74. }
  75. }
  76. },7000);
  77. })();

comments powered by Disqus