Hello,
I wanted to paste a autohotkey script I use for grinding games, fastly skipping dialogues, have to click for minigames etc
Download AutoHotKey from
Code: (Just copy text between asterisks (***'s))
************
#MaxThreadsPerHotkey 3
^z::
Toggle := !Toggle
Loop
{
If (!Toggle)
Break
Click
Sleep 10 ; Make this number higher for slower clicks, lower for faster.
}
Return
************
I wanted to paste a autohotkey script I use for grinding games, fastly skipping dialogues, have to click for minigames etc
Download AutoHotKey from
You must be registered to see the links
, install it, and make a file named as "clicker.ahk", just any name with .ahk extension on your desktop. double click it, and pressing CTRL+Z (shortcut for undo for most operating systems) will create a clicker (like rapid left click with mouse). I mostly use this when making a cam show and clicking "SIT", for just 1 energy gives like 10+$ money. I leave it like it for 10 mins get shit done around the house and voile 3000+$ money. I use for advacing dialogues, some events, like clicking dialog box when strip event (in order to advance event etc). Also to stop clicking press CTRL+Z againCode: (Just copy text between asterisks (***'s))
************
#MaxThreadsPerHotkey 3
^z::
Toggle := !Toggle
Loop
{
If (!Toggle)
Break
Click
Sleep 10 ; Make this number higher for slower clicks, lower for faster.
}
Return
************
Last edited: