Advertisement
Guest User

reroll

a guest
Mar 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  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. CoordMode, Mouse, Screen
  6. msgbox, Play !!! ;just open a window to show you script is running
  7. ;ExitApp
  8.  
  9. ;426 822 le livre
  10. ;234 833 Transmute
  11. ;850 841 right page
  12. ;581 833 left page
  13. ;714 842 fill
  14. ;right click
  15. ;fill
  16. ;transmute
  17. ;269 394 main attribute
  18. ;268 783 proprety replace
  19.  
  20. f1:: ; i or I or whatever the letter you choose
  21.  
  22. MouseGetPos, xpos, ypos
  23. Sleep, 150
  24. MouseClick, , 269,394
  25. Sleep, 150
  26. loop 5
  27. {
  28. MouseClick, , 268,783
  29. Sleep, 50
  30. }
  31. mousemove, xpos,ypos
  32. return
  33.  
  34.  
  35. f3:: ; v or V or whatever the letter you choose
  36. ExitApp
  37. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement