Read more about Cyberpunk 2077➜ https://cyberpunk2077.mgn.tv
So basically I just made a little script for autohotkey to click and hold the mouse button wherever the cursor is, so when this script is working, you must keep the cursor on craft button.
Game must be on windowed. Autohotkey must be installed for this to work.
Here is the script:
F1:: SetTimer, craft_item, 100
craft_item:
Send, {LButton Down}
Sleep, 1100
Send, {LButton Up}
Send, {LButton Up}
Send, {LButton Up}
Sleep, 100
Send, {LButton Up}
Return
F2:: SetTimer, craft_item, Off
write this in notepad and save it as craft.ahk, run it, then open your game (make sure it’s windowed) and hit F1, enjoy!
source
Thx
Thx, that helps a lot. But still need to move mouse inside craft button to start another cycle. Any way around that? So I can run script, left mouse idle and go for a walk while components keep crafting one after another?
While I can move in game cursor anywhere, my real cursor position will always stay at the middle of the screen. So this script will press mouse button at the middle of the screen. Did you encounter this issue? Do you know how to solve it?
Btw if you want to infinite crafting materials i have a trick. After having all cost reducing perks and chance to gain materials by dismantling perk and chance to free craft perk, crafting maxdoc mk1 and dismantling after, you gain 3 uncommon crafting material. Then craft hundreds of f-gx grenade and use them for crafting ozobs nose. Then dismantle them for infinite legendary- epic crafting materials. Sorry for bed england :/
is anyone experiencing this. I've tried autohotkey and other random auto clickers but for some reason, the auto clicking doesn't happen once I'm inside the game window. this craft one by one thing is really annoying and as of right now there are no mods for batch crafting, really wish I can craft by batch.
Way to flip the script! GG @Invector
I had to add a ^ in front of F1 and F2 to make the hotkeys Ctrl+F1 and Ctrl+F2. And also tripled the line " Send, {LButton Down}".
Now works perfectly.
You rock. I set the script, went to dinner, and came back to 1,800 grenades ready to be disassembled.
you deserve a beer
I should have checked this before I wrote a python script for this. GJ anyway.