cemxokenc

World of Warcraft Auto Rotation

Feb 19th, 2021 (edited)
815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. get_y = 5
  2.  
  3. loop
  4. #IfWinActive World of Warcraft
  5. 3::
  6. {
  7.  
  8.     PixelGetColor, Color, 1, %get_y%
  9.     if(Color = 0x000000)
  10.     {
  11.        
  12.         PixelGetColor, Color, 13, %get_y%
  13.         if(Color = 0x000000)
  14.         {
  15.             SendInput {F1}
  16.             return
  17.         }
  18.        
  19.         PixelGetColor, Color, 25, %get_y%
  20.         if(Color = 0x000000)
  21.         {
  22.             SendInput {F2}
  23.             return
  24.         }
  25.        
  26.         PixelGetColor, Color, 37, %get_y%
  27.         if(Color = 0x000000)
  28.         {
  29.             SendInput {F3}
  30.             return
  31.         }
  32.        
  33.         PixelGetColor, Color, 49, %get_y%
  34.         if(Color = 0x000000)
  35.         {
  36.             SendInput {F4}
  37.             return
  38.         }
  39.        
  40.         PixelGetColor, Color, 61, %get_y%
  41.         if(Color = 0x000000)
  42.         {
  43.             SendInput {F5}
  44.             return
  45.         }
  46.        
  47.         PixelGetColor, Color, 73, %get_y%
  48.         if(Color = 0x000000)
  49.         {
  50.             SendInput {F6}
  51.             return
  52.         }
  53.        
  54.         PixelGetColor, Color, 85, %get_y%
  55.         if(Color = 0x000000)
  56.         {
  57.             SendInput {F7}
  58.             return
  59.         }
  60.        
  61.         PixelGetColor, Color, 97, %get_y%
  62.         if(Color = 0x000000)
  63.         {
  64.             SendInput {F8}
  65.             return
  66.         }
  67.        
  68.         PixelGetColor, Color, 109, %get_y%
  69.         if(Color = 0x000000)
  70.         {
  71.             SendInput {F9}
  72.             return
  73.         }
  74.        
  75.     }
  76. }
  77. return
Add Comment
Please, Sign In to add comment