eaasy hotkey script please help

Ask gaming related questions (AHK v1.1 and older)
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

eaasy hotkey script please help

23 Sep 2017, 11:16

I want to make script that press spacebar and e button when i press n
BoBo
Posts: 6564
Joined: 13 May 2014, 17:15

Re: eaasy hotkey script please help

23 Sep 2017, 12:10

Nice to know! :)
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

Re: eaasy hotkey script please help

23 Sep 2017, 22:56

please help me
User avatar
Spawnova
Posts: 554
Joined: 08 Jul 2015, 00:12
Contact:

Re: eaasy hotkey script please help

24 Sep 2017, 05:20

Code: Select all

n:: ;hotkey, in this case n
send {space}e ;send characters, note, only special keys must be enclosed in braces
return ;return script to idle

f8::exitapp ;press f8 to close program

;save as SCRIPTNAME.ahk, then run to start script
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

Re: eaasy hotkey script please help

24 Sep 2017, 23:30

Spawnova wrote:

Code: Select all

n:: ;hotkey, in this case n
send {space}e ;send characters, note, only special keys must be enclosed in braces
return ;return script to idle

f8::exitapp ;press f8 to close program

;save as SCRIPTNAME.ahk, then run to start script
i had wrote the same but when i push e with shift and w in game, it do nt work,only when it pushed alone
without return it also work.
User avatar
Spawnova
Posts: 554
Joined: 08 Jul 2015, 00:12
Contact:

Re: eaasy hotkey script please help

25 Sep 2017, 02:28

ZergShadow wrote:when i push e with shift and w in game, it do nt work,only when it pushed alone
without return it also work.
You will need to add a wildcard to your hotkey, so that it ignores other modifiers

Code: Select all

*n:: ;hotkey, in this case n, * allows hotkey to work regardless of control/shift/alt being held down
send {space}e ;send characters, note, only special keys must be enclosed in braces
return ;return script to idle
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

Re: eaasy hotkey script please help

25 Sep 2017, 21:44

Spawnova wrote:
ZergShadow wrote:when i push e with shift and w in game, it do nt work,only when it pushed alone
without return it also work.
You will need to add a wildcard to your hotkey, so that it ignores other modifiers

Code: Select all

*n:: ;hotkey, in this case n, * allows hotkey to work regardless of control/shift/alt being held down
send {space}e ;send characters, note, only special keys must be enclosed in braces
return ;return script to idle
also i need that they work ssame time.
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

Re: eaasy hotkey script please help

27 Sep 2017, 00:14

how to make this work same time ? space and e in same moment.
yessorryno
Posts: 22
Joined: 12 Sep 2017, 03:13

Re: eaasy hotkey script please help

27 Sep 2017, 01:36

ZergShadow wrote:how to make this work same time ? space and e in same moment.
Hi,

Code: Select all

sendmode,play ;or input
n::
send {space}{e}
return
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

Re: eaasy hotkey script please help

03 Oct 2017, 04:04

yessorryno wrote:
ZergShadow wrote:how to make this work same time ? space and e in same moment.
Hi,

Code: Select all

sendmode,play ;or input
n::
send {space}{e}
return
it dont work without *.
And with * sometimes it work sometimes not.its sbout gameping?
yessorryno
Posts: 22
Joined: 12 Sep 2017, 03:13

Re: eaasy hotkey script please help

03 Oct 2017, 04:39

ZergShadow wrote:
yessorryno wrote:
ZergShadow wrote:how to make this work same time ? space and e in same moment.
Hi,

Code: Select all

sendmode,play ;or input
n::
send {space}{e}
return
it dont work without *.
And with * sometimes it work sometimes not.its sbout gameping?
Hi,

Code: Select all

sendmode,play ;or input ,To execute in the game, please add this line of code, and vice versa do not need to add.
n::
send {space}{e}
return
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

Re: eaasy hotkey script please help

06 Oct 2017, 01:36

yessorryno wrote:
ZergShadow wrote:
yessorryno wrote:
ZergShadow wrote:how to make this work same time ? space and e in same moment.
Hi,

Code: Select all

sendmode,play ;or input
n::
send {space}{e}
return
it dont work without *.
And with * sometimes it work sometimes not.its sbout gameping?
Hi,

Code: Select all

sendmode,play ;or input ,To execute in the game, please add this line of code, and vice versa do not need to add.
n::
send {space}{e}
return

nothing new in last post.sometimes it works and sometims not only with *
User avatar
Reloaded
Posts: 283
Joined: 25 Aug 2017, 08:48

Re: eaasy hotkey script please help

08 Oct 2017, 08:34

ZergShadow wrote:
yessorryno wrote:
ZergShadow wrote:
yessorryno wrote:
ZergShadow wrote:how to make this work same time ? space and e in same moment.
Hi,

Code: Select all

sendmode,play ;or input
n::
send {space}{e}
return
it dont work without *.
And with * sometimes it work sometimes not.its sbout gameping?
Hi,

Code: Select all

sendmode,play ;or input ,To execute in the game, please add this line of code, and vice versa do not need to add.
n::
send {space}{e}
return

nothing new in last post.sometimes it works and sometims not only with *

Hey, maybe this can Help you ! ;)

Code: Select all

#Maxthreadsperhotkey 2
N::

If toggle := !Toggle
Loop

{
If toggle 
{

Send, {Space}
Sleep, 10
Send, {E}
Sleep, 10

}
Else 
	break
}
return
ZergShadow
Posts: 19
Joined: 02 Aug 2017, 23:22

Re: eaasy hotkey script please help

20 Oct 2017, 12:14

space::
send {space}{space}{space}{space}{space}{space}{space}{space}{space}{space}{space}{space}{space}{space}
return

howw to make one space make many ?its dont work.

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 59 guests