Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. image_name=TextBox.png
  2.  
  3. Gui, Add, Edit, r1 x100 y35 w300 Center vLane
  4. Gui, Add, Text, x60 y40, Lane:
  5. Gui, Add, Button, gPress x220 w50, Submit
  6. Gui, Show,w500 h100, League of Legend Auto Chat-Picker
  7. return
  8.  
  9. Press:
  10. Gui, Submit
  11. if Lane!=""
  12. MsgBox, You chose: %Lane%
  13. if Champ!=""
  14. MsgBox, You chose: %Champ%
  15.  
  16. f1::
  17.  
  18.  
  19.  
  20. ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, %image_name%
  21.  
  22. if ErrorLevel = 2
  23. tooltip impossibile condurre ricerca
  24. else if ErrorLevel = 1
  25. tooltip Immagine non trovata
  26. else
  27. loop
  28. {
  29. WinGetTitle, Title, A
  30. if Title=Client PVP.net
  31. mousemove, %FoundX%, %FoundY%, 0
  32. MouseClick, left
  33. Send, %Lane%
  34. Send, {enter}
  35. tooltip Immagine trovata a: %FoundX%x%FoundY%.
  36.  
  37. }
  38. return
  39.  
  40. esc::
  41. msgbox Script chiuso dall'utente
  42. exitapp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement