Auto Paste?

Ask gaming related questions (AHK v1.1 and older)
Lan_1000
Posts: 4
Joined: 16 May 2021, 11:15

Auto Paste?

Post by Lan_1000 » 17 May 2021, 03:54

Hello i need script?
Auto press button "word" press button and repeat for 5 seconds?

Press Enter
"for example a word"
Press Enter
and repeat for 5 seconds?
Thanks in advance!

Rohwedder
Posts: 7551
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Auto Paste?

Post by Rohwedder » 17 May 2021, 11:16

Hallo,
perhaps??:

Code: Select all

Loop
{
	Send, {Enter}
	Send, word
	Sleep, 5000
}

Lan_1000
Posts: 4
Joined: 16 May 2021, 11:15

Re: Auto Paste?

Post by Lan_1000 » 17 May 2021, 14:44

Thank you so much !!!

Code: Select all

F3::
Loop, 9999 {
	Send, {Enter}
	Send, PassWord
	Sleep, 5000
}
return
[Mod edit: [code][/code] tags added.]

Rohwedder
Posts: 7551
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Auto Paste?

Post by Rohwedder » 18 May 2021, 04:57

For passwords like !+#☝@~☠•§8¿ I recommend SendRaw:

Code: Select all

F3::
Loop, 9999 {
	Send, {Enter}
	SendRaw, !+#☝@~☠•§8¿
	Sleep, 5000
}
return

Post Reply

Return to “Gaming Help (v1)”