TCG Card Shop Simulator

TCG Card Shop Simulator

View Stats:
Mellybyte Oct 16, 2024 @ 1:56pm
Left Click hold Autohotkey Script
Since i spend most of the time unpacking cards in this game in late stage
to minimize carpal-tunnel issues i have I made an autohotkey script

The script basically toggles left click mouse spam on and off with the "/" key
all you need to do is download and install Autohotkey and create new script then paste the following code then save it as .ahk file



; Define a toggle variable
toggle := false

; Hotkey for the forward slash (/)
/::
toggle := !toggle ; Toggle the state (on/off)

if (toggle) {
SetTimer, SpamLeftClick, 50 ; Start the timer to spam left click every 50 ms
} else {
SetTimer, SpamLeftClick, Off ; Stop the timer
}
return

SpamLeftClick:
Click, left ; Perform a left mouse click
return
< >
Showing 1-3 of 3 comments
UrbanNoodles Oct 16, 2024 @ 2:10pm 
Or you can just download Fast Pack Opening on Nexus. You don't have to change the speed or anything if you don't want to deviate from vanilla, but there is an option to auto open and prevent high value or new cards from stopping the opening process.
Kani Oct 16, 2024 @ 2:40pm 
ya mods accomplish all this and more QoL
VoidingNixx Oct 16, 2024 @ 2:45pm 
Thank you for the script!
< >
Showing 1-3 of 3 comments
Per page: 1530 50

Date Posted: Oct 16, 2024 @ 1:56pm
Posts: 3