Advertisement
bobmarley12345

ProjectRed auto upgrade auto hotkey

Nov 12th, 2023
998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Requires Autohotkey v2.0
  2. F6::
  3. {
  4.     ; Use full screen game, and have the utility tool GUI open, all 4 items
  5.     ; in the top left corner of your GUI left to right
  6.     ; 150ms is the rough packet round trip time. Too fast can glitch your inv until you reconnect
  7.     ; add items to UI
  8.     Send("{Shift Down}")
  9.     Sleep(150)
  10.     Click(750, 490)
  11.     Sleep(150)
  12.     Click(800, 490)
  13.     Sleep(150)
  14.     Click(850, 490)
  15.     Sleep(150)
  16.     Click(900, 490)
  17.     Sleep(150)
  18.  
  19.     ; click install
  20.     Click(950, 400)
  21.     Sleep(150)
  22.    
  23.     ; click the item back into inv
  24.     Click(960, 350)
  25.     Sleep(150)
  26.     Send("{Shift Up}")
  27.     return
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement