Search found 6 matches

by LuckyLuciano
11 Nov 2018, 03:18
Forum: Gaming Help (v1)
Topic: Spam a key whilst others are held down
Replies: 3
Views: 1209

Re: Spam a key whilst others are held down

Hallo, try: F1:: ; start Send, {Space Down} Loop { Send, {Left Down} Sleep 5000 Send, {Left Up} Send, {Right Down} Sleep 5000 Send, {Right Up} } Return F2:: Send, {Space Up}{Left Up}{Right Up} ExitApp Check this script by running this second script additionally.: #Persistent SetTimer, KeyState, 200...
by LuckyLuciano
09 Nov 2018, 09:37
Forum: Gaming Help (v1)
Topic: Spam a key whilst others are held down
Replies: 3
Views: 1209

Spam a key whilst others are held down

Hi, I have a script as below: F1:: ; start Loop { Send, {Left Down} Sleep 5000 Send, {Left Up} Send, {Right Down} Sleep 5000 Send, {Right Up} } Return F2::ExitApp I want it to also continuously press the space key (not just hold down like the left and right) while on this loop. How do I add this? Th...
by LuckyLuciano
15 Oct 2018, 11:22
Forum: Ask for Help (v1)
Topic: autowalker - noob question
Replies: 9
Views: 1932

Re: autowalker - noob question

The script should work fine, but it might be with the detection of inputs the game has updated to. For example the script sends simulated key presses, but doesn't actually press the button, and if their code only wants the real thing and detects the other it may just stop accepting the code for a w...
by LuckyLuciano
15 Oct 2018, 11:10
Forum: Ask for Help (v1)
Topic: autowalker - noob question
Replies: 9
Views: 1932

Re: autowalker - noob question

F1:: ; start Loop { Send {Up} Sleep 1000 Send {Down} Sleep 1000 } return Hello, autohotkey and games tend to conflict. Check this post: https://autohotkey.com/board/topic/111737-how-to-make-ahk-work-in-most-games-the-basics/ From that you could try something like this (ahk v1.1.x): F1:: ; start Loo...
by LuckyLuciano
15 Oct 2018, 09:06
Forum: Ask for Help (v1)
Topic: autowalker - noob question
Replies: 9
Views: 1932

Re: autowalker - noob question

I don't have much experience with v2 as I use v1.1x, but I've found that sometimes if SendInput doesn't work, other variants of send might, such as SendEvent or SendPlay . Thanks, I gave those a try but same issue. The script seems to work but maybe the game somehow blocks it? Even though it works ...
by LuckyLuciano
14 Oct 2018, 09:13
Forum: Ask for Help (v1)
Topic: autowalker - noob question
Replies: 9
Views: 1932

autowalker - noob question

Hi, Few years ago I made a script that would simply walk back and forwards for me in a game, now when I try to use the script (i've updated to ahk v2 etc), it doesn't work, the game is the same but it is a different version of the game now. However when I open the in game menu with the script runnin...

Go to advanced search