Search found 6 matches

by dangerel
09 Jul 2020, 13:00
Forum: Gaming Help (v1)
Topic: Need a little change in hold down script Topic is solved
Replies: 1
Views: 798

Re: Need a little change in hold down script Topic is solved

i did it after spending hours, im putting it here maybe one day it will be guide :D

Code: Select all

*LButton::
{
$a:
send, {Blind}{RButton}

b:
While GetKeyState("LButton","P") 
send, {Blind}{LButton}
sleep 35
}
return

NumpadAdd::
Suspend, toggle
return

by dangerel
09 Jul 2020, 07:31
Forum: Gaming Help (v1)
Topic: Need a little change in hold down script Topic is solved
Replies: 1
Views: 798

Need a little change in hold down script Topic is solved

Hello dear benevolent community, I need to execute once RClick before LButton start spams, is that possible with while getkeystate ? *LButton:: While GetKeyState("LButton","P") { ;i need rclick once here, i tried so much commands and didn't work, locks my Lbutton or nothing happens :D send, {Blind}{...
by dangerel
25 Mar 2020, 04:19
Forum: Ask for Help (v1)
Topic: I need some change in "Hold the key" script Topic is solved
Replies: 2
Views: 357

Re: I need some change in "Hold the key" script Topic is solved

Hallo, try: Toggle = 0 Return #MaxThreadsPerHotkey, 3 *CapsLock:: #MaxThreadsPerHotkey, 1 IF Toggle++ Return While, Toggle = 1 { SendInput {7 down} sleep, 11 SendInput {7 up} SendInput {8 down} sleep, 11 SendInput {8 up} SendInput {8 down} sleep, 11 SendInput {8 up} sleep, 11 } Toggle = 0 return Th...
by dangerel
24 Mar 2020, 19:38
Forum: Ask for Help (v1)
Topic: I need some change in "Hold the key" script Topic is solved
Replies: 2
Views: 357

I need some change in "Hold the key" script Topic is solved

hellos i need to change this script from hold down to toggle on/off without loss of fast key press, i tried some changes but i can't do it. *CapsLock:: While GetKeyState("CapsLock", "P") { SendInput {7 down} sleep, 11 SendInput {7 up} SendInput {8 down} sleep, 11 SendInput {8 up} SendInput {8 down} ...
by dangerel
16 Sep 2017, 02:08
Forum: Gaming Help (v1)
Topic: 2 Macros in 1 Script With Toggle Topic is solved
Replies: 2
Views: 1062

Re: 2 Macros in 1 Script With Toggle Topic is solved

Hi The problem is duplicate label. There can not be two identical to the address(SendTheKey:,SendTheKey1:) Change the code to the following, you can successfully execute LShift:: RepeatKey := !RepeatKey If RepeatKey SetTimer, SendTheKey, 20 Else SetTimer, SendTheKey, Off Return SendTheKey: SendInpu...
by dangerel
14 Sep 2017, 10:45
Forum: Gaming Help (v1)
Topic: 2 Macros in 1 Script With Toggle Topic is solved
Replies: 2
Views: 1062

2 Macros in 1 Script With Toggle Topic is solved

Hallo. I dont know Eng so much. I need to run 2 macros in 1 script with toggle key, i have a script but its not working. Msgbox saying to me "Line 23 SendTheKey - Error: Duplicate label - Program will exit." Code LShift:: RepeatKey := !RepeatKey If RepeatKey SetTimer, SendTheKey, 20 Else SetTimer, S...

Go to advanced search