Advertisement
Guest User

Bh Shop Buy

a guest
Dec 9th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. ;press shift and t to for bigger buys
  7. ;press shift and s for smaller buys
  8. ;press shift and 2 to stop the script
  9. ;press shift and 1 to reload the script
  10.  
  11. +1::
  12. Reload
  13. return
  14.  
  15. +2::
  16. Pause
  17. Suspend
  18. return
  19.  
  20. WheelUp::
  21. BlockInput On
  22. X=0
  23. Z=0
  24. Y=0
  25. BlockInput Off
  26. return
  27.  
  28.  
  29. +t::
  30. Loop 200000
  31. {
  32. MouseClick, right,
  33. Sleep, 30
  34. MouseMove, 0, 70, 1, R
  35. Click
  36. Sleep, 30
  37. MouseMove, 0, -70, 1, R
  38. }
  39. return
  40.  
  41.  
  42.  
  43.  
  44. +s::
  45. Loop 200000
  46. {
  47. MouseClick, right,
  48. Sleep, 30
  49. MouseMove, 0, 90, 1, R
  50. Click
  51. Sleep, 30
  52. MouseMove, 0, -90, 1, R
  53. }
  54. return
  55.  
  56.  
  57.  
  58. +v::
  59. Loop 200000000000000000000
  60. {
  61. Sleep, 10000
  62. Click
  63. }
  64. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement