Send Topic is solved

Ask gaming related questions (AHK v1.1 and older)
PARATR00PER
Posts: 8
Joined: 20 Aug 2017, 11:41

Send

10 Dec 2017, 06:46

I'm making a bot that will send the string "10951" but I want to make the script at 1 as it goes along like 10951, 10952, 10953, 10954. I'm not sure how I'd do this without thousands of lines. I'd also like to make the script end at 30000.

Code: Select all

^t::
while 1=1
Loop
{
sleep,4950
Send 10951
sleep,50
Send {enter}
}
return
Rohwedder
Posts: 7616
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Send  Topic is solved

11 Dec 2017, 02:05

Hallo,
you want to send 10951, 10952, ... 30000?
Try:

Code: Select all

^t::
Counter := 10951
While Counter <= 30000
{
	Sleep, 4950
	Send, %Counter%
	Sleep, 50
	Counter++
}
Return
PARATR00PER
Posts: 8
Joined: 20 Aug 2017, 11:41

Re: Send

11 Dec 2017, 10:30

Thanks so much!

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 39 guests