jackethdavies

Untitled

Jun 22nd, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // define a function to make it easier
  2. function clickButton() {
  3. // get the 'button' element and click it
  4. $('button').click();
  5. }
  6.  
  7. // loop whilst the link is correct
  8. while(window.location.href === 'https://camorra.world/crime/gta.php') {
  9. // check if the text 'Select the image that does not belong in a row' is not on the page
  10. while($('#content').text().indexOf('Select the image that does not belong in a row') === -1) {
  11. // click the button every 2 minutes
  12. setInterval(clickButton, 120000);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment