Guest User

Untitled

a guest
Jul 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. ;healthbar 645, 899, 935, 924,
  2. ;bottom buttons 631, 938, 1294, 1065,,
  3. ;right buttons 1856, 212, 1920, 885,
  4. ;cast area 947, 723, 1396, 895,
  5. ;self buffs 590, 813, 932, 907,
  6. ;enemy buffs969, 805, 1335, 907,
  7.  
  8.  
  9.  
  10. CoordMode Pixel
  11.  
  12.  
  13. ; To have a ToolTip disappear after a certain amount of time
  14. ; without having to use Sleep (which stops the current thread):
  15. #Persistent
  16.  
  17.  
  18. RemoveToolTip:
  19. SetTimer, RemoveToolTip, Off
  20. ToolTip
  21. return
  22.  
  23.  
  24. F2::
  25. Loop
  26. {
  27. if not GetKeyState("F2","P")
  28. break
  29. GoSub Wow
  30. Wow:
  31. ImageSearch, FoundX, FoundY, 1440, 950, 1479, 1028,
  32.  
  33. *90 e:\Games\AHKWOW\LBsmall.jpg
  34. ifEqual ErrorLevel,1
  35. {
  36. Send 0
  37. ;ToolTip, kick, FoundX, FoundY
  38. ;SetTimer, RemoveToolTip, 700
  39. Sleep 1
  40. return
  41. }
  42. return
  43. }
  44.  
  45. return
Add Comment
Please, Sign In to add comment