5Million Eddies in Under 12Min - Proof - Cyberpunk 2077

3 years ago
11

This video will show you how I automated my Cyberpunk avatar to generate money without me there. Super fast and super safe.

Let me know anyone would like a video walkthrough of the code :)

Things Needed:
1. Autohotkey program (Free) - https://www.autohotkey.com/download/

2. AHK Patch for Cyberpunk - https://www.reddit.com/r/cyberpunkgam...

3. This quest completed - https://www.youtube.com/watch?v=EDW4a...

4. . My Script - Copy bellow and save to "script.ahk" and run with AHK program.
----------------------------------------------------------------------------------
;;//Cybermore money - Start at a Sell Box and hover over Misc Items. Filter by Price Descencing so its first.

SetTitleMatchMode 1

+1::
Loop, 10
{

MouseClick, left
Sleep, 300
;;//First mouse move to sell item
DllCall("mouse_event", uint, 1, int, -100, int, 60)
Sleep, 300
MouseClick, Left
Sleep, 300
Send, {Right}{Right}{Right}{Right}
Sleep, 300
Send, {tab}
Sleep, 300
;;// DllCall("mouse_event", uint, 1, int, 500, int, 0)
Sleep, 400
Send, {esc}
Sleep, 1000
Send, R
Sleep, 500
;;//Move to buy button.
DllCall("mouse_event", uint, 1, int, 40, int, -120)
Sleep, 500
MouseClick, Left
Sleep, 300
Send, {Right}{Right}{Right}{Right}
Sleep, 500
Send, {tab}{tab}
Sleep, 500
Send, {esc}
Sleep, 300

;;/Start time chagne ------------------
Send, I
Sleep, 300
;;//Skip time
DllCall("mouse_event", uint, 1, int, -365, int, 215)
Sleep, 400
MouseClick,Left
Sleep, 400
;;//Go back one hour
DllCall("mouse_event", uint, 1, int, 195, int, -200)
Sleep, 600
MouseClick, Left
Sleep, 500
;;//mOve away from time back button.
DllCall("mouse_event", uint, 1, int, 15, int, -20)
Sleep, 300
;;//confirm
Send, F
Sleep, 1000
Send, {esc}
Sleep, 600
Send, R
Sleep, 600
;;//Move to buy button.
DllCall("mouse_event", uint, 1, int, 40, int, -120)
Sleep, 500
;;//Move to Go back to select button
DllCall("mouse_event", uint, 1, int, -395, int, -30)
Sleep, 300
}
;;// 1. Reload AHK Script
!w::ReloadScript()

ReloadScript() {
Run %A_AhkPath% "%A_ScriptFullPath%"
ExitApp
}

Return

----------------------------------------------------------------------------------
You may have to change the resolution or the script depending on your screen size.
Enjoy

Loading comments...