Hey guys, I playing Terraria and I would like to remap 'q' as 'aa' and 'e' as 'dd'. I tried
q::Send aa
e::Send dd
but it doesn't work. Could you help me please?
Hey guys, I playing Terraria and I would like to remap 'q' as 'aa' and 'e' as 'dd'. I tried
q::Send aa
e::Send dd
but it doesn't work. Could you help me please?
Check out this thread to see how it works in a game. http://www.autohotke...mes-the-basics/
Actually, before that, make sure your script works in a program like Notepad. Your two-line code looks just fine to work, and I expect it's just your game that's the problem.
If that's the exact same script you have set up then pressing q will send aa and dd
make sure you set up a "return" stop.
try putting a small delay between keys.
q::
send a
sleep 10
send a
return
e::
send d
sleep 10
send d
return
I assume you are trying to make an auto dash script for the Shield of Cthulu (and like items)
in that case, a small pause will work great. 10 milliseconds is perfect.