tabnation

minecraft auto craft fast

Jun 1st, 2022 (edited)
1,182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ;ahk v1
  2. ;by TabNation Automation on YouTube
  3.  
  4.  
  5. f1:: ; set up
  6. Tooltip, Press the item you are making
  7. KeyWait, LButton, D
  8. MouseGetPos, xpos1, ypos1
  9. sleep 1000
  10. Tooltip, Press the collect loction
  11. KeyWait, LButton, D
  12. MouseGetPos, xpos2, ypos2
  13. Tooltip, You are ready! Press F2 to run single or shift f2 for 10
  14. sleep 3000
  15. tooltip
  16. Return
  17.  
  18. f2::
  19. MouseClick, left, %xpos1%, %ypos1%
  20. sleep 500
  21. send {shift down}
  22. MouseClick, left, %xpos2%, %ypos2%
  23. send {shift up}
  24. Return
  25.  
  26. +f2::
  27. loop 10
  28. {
  29. MouseClick, left, %xpos1%, %ypos1%
  30. sleep 500
  31. send {shift down}
  32. MouseClick, left, %xpos2%, %ypos2%
  33. send {shift up}
  34. }
  35. Return
  36.  
  37. f3::
  38. exit
Add Comment
Please, Sign In to add comment