Advertisement
Guest User

Untitled

a guest
Apr 6th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. check_haste()
  2. {
  3.     WinActivate,Path of Exile
  4.     CoordMode Pixel, Relative
  5.     CoordMode Mouse, Relative
  6.     tooltip, looking if Haste aura is active    ;FoundX :=0
  7.     ;FoundY :=0
  8.     ImageSearch, FoundX, FoundY, 1, 1, 1795, 126, haste.png
  9.    
  10.     if ErrorLevel = 2
  11.         tooltip Could not conduct the search.
  12.     else if ErrorLevel = 1
  13.         ;tooltip Image could not be found on the screen.
  14.         SendInput % haste
  15.    
  16.     else{
  17.         mousemove, %FoundX%, %FoundY%, 5
  18.         ;tooltip The image was found at %FoundX%x%FoundY%.
  19.        
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement