Advertisement
Guest User

ath

a guest
Aug 12th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  3. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  4.  
  5. ; Change les noms par les pseudo de ta team
  6. ; Quand tu appuiera sur "²", sa cliquera sur chaque fenetre de perso
  7. ; CONDITION : Faut que toute les fenetres fasse la meme taille (ideal fenetre maximisé), et soit sur le meme écran
  8.  
  9. name1 = Lyliya
  10. name2 = Hazardya
  11. name3 = Hyliya
  12. name4 = Himalaya
  13. name5 = JaquieMichel
  14. name6 = JackDaniel
  15. name7 = Ruchou57
  16. name8 = JeremysadiEstRoux
  17.  
  18. SetMouseDelay, 10
  19.  
  20. ²::
  21. MouseGetPos, posx, posy
  22. ControlClick, x%posx% y%posy%, %name1%
  23. ControlClick, x%posx% y%posy%, %name2%
  24. ControlClick, x%posx% y%posy%, %name3%
  25. ControlClick, x%posx% y%posy%, %name4%
  26. ControlClick, x%posx% y%posy%, %name5%
  27. ControlClick, x%posx% y%posy%, %name6%
  28. ControlClick, x%posx% y%posy%, %name7%
  29. ControlClick, x%posx% y%posy%, %name8%
  30. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement