Advertisement
Tcip

Sweet Berries

Mar 25th, 2020
1,076
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2. Sweet Berries tested on Minecraft v1.15.2
  3.  
  4. END = Quit
  5. P = Pause
  6. G = Harvesting the berries
  7. */
  8.  
  9. IfWinExist, ahk_exe javaw.exe
  10. WinActivate
  11. Else
  12. ExitApp
  13.  
  14. SplashTextOn, 200 ,80 ,Running Sweet Berries v1.0.ahk, Press END to quit`nPress P for Pause`nPress G to start
  15. WinMove,Running Sweet Berries v1.0.ahk, , 860, 40  ; Move the splash window to the top left corner.
  16.  
  17. END::ExitApp
  18. P::Pause
  19.  
  20. G::
  21. Loop
  22. {
  23. Send {LButton}
  24. }
  25. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement