Autohotkey Help Topic is solved

Ask gaming related questions (AHK v1.1 and older)
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Autohotkey Help  Topic is solved

29 Mar 2020, 16:11

How do I make this faster help me please its for a game (private server so no unfair chance)also I won't accept any loop scripts or anything when I press the key and the click duplicates its simple key sends click when I click key but how do I make the clicks faster this gives me at least like 27 cps(At least 60 cps or higher)If you can't make it at least 60 cps you can make it above 27 cps like somewhere 40 cps or 38 etc

v::
setBatchLines 900
send,5
mouseclick,left
sleep,-1
SetMouseDelay,-1
Return
User avatar
Yakshongas
Posts: 590
Joined: 21 Jan 2020, 08:41

Re: Autohotkey Help

29 Mar 2020, 17:41

setting "SetBatchLines 900" makes the script go slower and should be on the top of the document instead of inside a hotkey, same goes with "SetMouseDelay -1", set both to -1 to make the script go faster.

Also "Sleep, -1" does noting.
Anyway try this:

Code: Select all

v::
	SendInput, 5
	while (getKeyState("v", "P"))
	{
		Click, 10
	}
return
Attachments
Captura.png
Captura.png (78.4 KiB) Viewed 877 times
Please mark your topics as solved if you don't need any further help. ✅

Need a little more help? Discord : Yakshongas#9893 🕹
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Re: Autohotkey Help

30 Mar 2020, 09:27

Thanks you're the best
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Re: Autohotkey Help

30 Mar 2020, 09:35

I notice that the click duplicates because there's another key place in the script is there a way to fix this if not thats ok
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Re: Autohotkey Help

30 Mar 2020, 09:39

I notice that when you spam the key that sends a click sometimes it doesn't due to how much and the speed in duration you click the key and there's this weird delay
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Re: Autohotkey Help

30 Mar 2020, 09:49

with slight changes and your help I was able to create this thank you
setBatchLines -1
SetMouseDelay,-1
ListLines,off
v::
SendInput, 5
Click, 10
sleep,-1
SetMouseDelay,-1
Return
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Re: Autohotkey Help

30 Mar 2020, 09:50

So its actually the "click,10" that is doing the duplication which I can easily change the number and fix the delay
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Re: Autohotkey Help

30 Mar 2020, 09:51

setBatchLines -1
SetMouseDelay,-1
ListLines,off
v::
SendInput, 5
Click, 6
sleep,-1
SetMouseDelay,-1
Return
User avatar
Yakshongas
Posts: 590
Joined: 21 Jan 2020, 08:41

Re: Autohotkey Help

30 Mar 2020, 09:52

I used click, 10 because it sends 10 clicks in a single line.
Please mark your topics as solved if you don't need any further help. ✅

Need a little more help? Discord : Yakshongas#9893 🕹
Shine_Maya
Posts: 10
Joined: 29 Mar 2020, 16:04

Re: Autohotkey Help

30 Mar 2020, 09:57

oh ok

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 101 guests