Advertisement
Doug4347

dockworker.ahk

Dec 5th, 2022
903
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  2. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  3.  
  4. !1:: Send, t^a/cargojob`n
  5.  
  6. XButton1::
  7.     If collected {
  8.         Send, t^a/cargostore`n
  9.     } else {
  10.         Send, t^a/cargocollect`n
  11.     }
  12.     collected := !collected
  13. Return
  14.  
  15. XButton2::
  16.     Send, t^a/rprf`n
  17. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement