Advertisement
Guest User

tl light

a guest
Mar 31st, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var inter = setInterval(function() {
  2.    
  3.     if(
  4.         ($('body', window.parent.frames[2].document).querySelector("[src='graphics/life.gif']"))
  5.     )
  6.     {
  7.         if($('body', window.parent.frames[0].document).querySelector("[alt='Search for an enemy to fight']")){
  8.             $('body', window.parent.frames[0].document).querySelector("[alt='Search for an enemy to fight']").parentElement.click();
  9.         }
  10.         setTimeout(function() {
  11.             if($('body', window.parent.frames[0].document).querySelector("[alt='Fight until one of you is dead.']")){
  12.                 $('body', window.parent.frames[0].document).querySelector("[alt='Fight until one of you is dead.']").parentElement.click();
  13.             }
  14.         }, 1000);
  15.        
  16.         setTimeout(function() {
  17.             if($('body', window.parent.frames[0].document).querySelector("[alt='Pickup this item']")){
  18.                 $('body', window.parent.frames[0].document).querySelector("[alt='Pickup this item']").parentElement.click();
  19.             }
  20.             if($('body', window.parent.frames[0].document).querySelector("[alt='Sell your current armor']")){
  21.                 $('body', window.parent.frames[0].document).querySelector("[alt='Go back to the base']").parentElement.click();
  22.                 setTimeout(function() {
  23.                     $('body', window.parent.frames[0].document).querySelector("[alt='The wastelands']").parentElement.click();
  24.                 }, 1000);
  25.             }
  26.         }, 2000);
  27.     }
  28.     else{
  29.         clearInterval(inter);
  30.         console.log("Your hero is dead or captcha has appeared. Script stopped.");
  31.     }
  32.  
  33. }, 3500);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement