Page 1 of 1

eaasy hotkey script please help

Posted: 23 Sep 2017, 11:16
by ZergShadow
I want to make script that press spacebar and e button when i press n

Re: eaasy hotkey script please help

Posted: 23 Sep 2017, 12:10
by BoBo
Nice to know! :)

Re: eaasy hotkey script please help

Posted: 23 Sep 2017, 22:56
by ZergShadow
please help me

Re: eaasy hotkey script please help

Posted: 24 Sep 2017, 05:20
by Spawnova

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

Re: eaasy hotkey script please help

Posted: 24 Sep 2017, 23:30
by ZergShadow
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.

Re: eaasy hotkey script please help

Posted: 25 Sep 2017, 02:28
by Spawnova
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

Re: eaasy hotkey script please help

Posted: 25 Sep 2017, 21:44
by ZergShadow
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.

Re: eaasy hotkey script please help

Posted: 27 Sep 2017, 00:14
by ZergShadow
how to make this work same time ? space and e in same moment.

Re: eaasy hotkey script please help

Posted: 27 Sep 2017, 01:36
by yessorryno
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

Re: eaasy hotkey script please help

Posted: 03 Oct 2017, 04:04
by ZergShadow
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?

Re: eaasy hotkey script please help

Posted: 03 Oct 2017, 04:39
by yessorryno
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

Re: eaasy hotkey script please help

Posted: 06 Oct 2017, 01:36
by ZergShadow
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 *

Re: eaasy hotkey script please help

Posted: 08 Oct 2017, 08:34
by Reloaded
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

Re: eaasy hotkey script please help

Posted: 20 Oct 2017, 12:14
by ZergShadow
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.

Re: eaasy hotkey script please help

Posted: 21 Oct 2017, 11:20
by ZergShadow
гз