Advertisement
Karrick

Heart Box Coin Grind

Jan 14th, 2019
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Esc:: ExitApp
  2.  
  3.  
  4. R:: Reload
  5.  
  6.  
  7. F1::
  8.  
  9. Loop {
  10.  
  11.     Start:
  12.  
  13.     sleep 250
  14.  
  15.     ;Check for ad
  16.     PixelGetColor, color, 1650, 40
  17.     if (color = 0x000000) {
  18.         click 1650, 40
  19.         Goto, Start
  20.         }
  21.  
  22.     ;Run level grind
  23.     else {
  24.         click 700, 50                               ;Makes left tab active
  25.         click 650, 150                              ;Clicks level 1
  26.         click 1000, 450                             ;Clicks Bathe The Ducky! mode
  27.         sleep 100                                   ;Waits for level to load
  28.         click 850, 450                              ;Clicks box in level
  29.         sleep 4500                                  ;Waits for level to complete or fail
  30.    
  31.         ;Check for bonus
  32.         PixelGetColor, color, 818, 570
  33.         if (color = 0x1E35E5) {
  34.    
  35.             click 850, 600                          ;Click bonus button
  36.             sleep 5500                              ;Wait for bonus to apply and ad to load
  37.             click 900, 700                          ;Watch ad for another bonus
  38.             sleep 2000                              ;Wait for ad to load
  39.        
  40.             ;Check for picture ad
  41.             PixelGetColor, color, 1650, 60
  42.             if (color = 0x000000 or color = 0xFFFFFF) {
  43.                 click 1650, 40
  44.             }
  45.        
  46.             ;Video ad
  47.             else {
  48.                 sleep 15000
  49.            
  50.                 ;Check if ad is 15 or 30 seconds in duration
  51.                 PixelGetColor, color, 1200, 20
  52.                 if (color = 0x000000)
  53.                     sleep 15000
  54.             }
  55.        
  56.             sleep 1500
  57.             click 850, 600
  58.             sleep 4000
  59.             click 850, 600
  60.             sleep 500
  61.        
  62.         }
  63.    
  64.         click 710, 570                              ;Returns to level select
  65.     }
  66.  
  67.     Goto, Start
  68.  
  69. }
  70.  
  71. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement