Search found 74 matches

by bryantan179
12 Jun 2021, 07:00
Forum: Ask for Help (v1)
Topic: ahk does not work on my logitech m590
Replies: 2
Views: 236

Re: ahk does not work on my logitech m590

tq it is working now .
by bryantan179
11 Jun 2021, 08:07
Forum: Ask for Help (v1)
Topic: ahk does not work on my logitech m590
Replies: 2
Views: 236

ahk does not work on my logitech m590

Hello guys , i want to remap my logitech M590 Mbutton but it does not work .After i run the script , the original middle button does not work anymore and it does not send Space down and Space up. i tried to remap LButton and RButton and it works but not the XButton1 and XButton2 . Can anyone help ? ...
by bryantan179
26 Apr 2018, 11:08
Forum: Gaming Help (v1)
Topic: Using one button to hold down others?
Replies: 2
Views: 741

Re: Using one button to hold down others?

#MaxHotkeysPerInterval 9900000000000
#HotkeyInterval 9900000000000
#NoEnv


$*XButton2::
Loop
{
if not GetKeyState("XButton2","P")
break
Send {1 down}{2 down}{3 down}{4 down}
}
Send {1 up}{2 up}{3 up}{4 up}
Keywait, XButton2
by bryantan179
16 Apr 2018, 04:10
Forum: Gaming Help (v1)
Topic: Make lean buttons able to be toggled
Replies: 11
Views: 3937

Re: Make lean buttons able to be toggled

try this , you can add #IfWinActive ______ at the top so that it works only on your game. jumpout = 0 $*q:: if(jumpout = 0) { jumpout = 1 SetTimer, LeanLeft, 10 } else { jumpout = 0 SetTimer, LeanLeft, off } Return $*e:: if(jumpout = 0) { jumpout = 1 SetTimer, LeanRight, 10 } else { jumpout = 0 SetT...
by bryantan179
12 Apr 2018, 18:19
Forum: Gaming Help (v1)
Topic: help
Replies: 2
Views: 767

Re: help

must the game be in windows mode or it can work in fullscreen too ?
by bryantan179
12 Apr 2018, 03:44
Forum: Gaming Help (v1)
Topic: help
Replies: 2
Views: 767

help

is there anyway to left click at a certain coordinate once if i hold or click the button one time when im playing game ? im using a program called netlimiter 4 that limits bandwidth for my game and i dont want to always alt+tab when the gaming is going on .for example , when im playing game and i cl...
by bryantan179
05 Apr 2018, 14:49
Forum: Gaming Help (v1)
Topic: need help
Replies: 1
Views: 605

need help

Why is there a huge delay between the first loop and the 2nd loop ? After the 2nd loop , it just loops at normal speed . how do i remove the huge delay ? #InstallMouseHook #NoEnv #MaxHotkeysPerInterval 99000000 #HotkeyInterval 99000000 #KeyHistory 0 ListLines Off Process, Priority, , H SetBatchLine...
by bryantan179
26 Feb 2018, 09:31
Forum: Gaming Help (v1)
Topic: how to stop the script immediately when key is released
Replies: 2
Views: 1386

Re: how to stop the script immediately when key is released

it works but if i hold capslock for like 3 seconds , it will stop looping Send_2 and Send_3
by bryantan179
26 Feb 2018, 08:10
Forum: Gaming Help (v1)
Topic: how to stop the script immediately when key is released
Replies: 2
Views: 1386

how to stop the script immediately when key is released

In this script , when i click capslock once , it will loop and i need to click another time for it to stop immediately . Is there anyway to make it so that when i hold capslock , it will loop and when i release capslock , it will stop looping immediately instead of clicking capslock another time ? #...
by bryantan179
25 Feb 2018, 16:22
Forum: Gaming Help (v1)
Topic: help me
Replies: 7
Views: 1280

Re: help me

what about this ? how do i make it so that when i release capslock , script stop looping. #MaxHotkeysPerInterval 9900000000000 #HotkeyInterval 9900000000000 $*Capslock:: if(jumpout = 0) { jumpout = 1 Send {2 down} Send {2 up} SetTimer, Send_2, 10 SetTimer, Send_3, 10 } else { jumpout = 0 SetTimer, S...
by bryantan179
25 Feb 2018, 13:14
Forum: Gaming Help (v1)
Topic: help me
Replies: 7
Views: 1280

Re: help me

what if i send something with a long sleep ? for example:
Send {a down}
Sleep 500
Send {a up}
what i want is , when i release the capslock , it will immediately stop the loop instead of continue for a few second until the loop is finished .
by bryantan179
25 Feb 2018, 11:53
Forum: Gaming Help (v1)
Topic: help me
Replies: 7
Views: 1280

Re: help me

What if i hold capslock and i hold ''D''button , i want it to send D instead of Send, {A Down}{A Up} ? is it possible ? Also , if i hold the button for few seconds and release it ,sometimes it will take few second for the script to stop looping . is it possible to stop the script from looping immedi...
by bryantan179
25 Feb 2018, 11:45
Forum: Gaming Help (v1)
Topic: help me
Replies: 7
Views: 1280

Re: help me

thx it works , but why didnt my script worked ? is it because i used 2 keywait ?
by bryantan179
25 Feb 2018, 09:23
Forum: Gaming Help (v1)
Topic: help me
Replies: 7
Views: 1280

help me

When i click or hold capslock , the script should loop Spam1 and Spam2 . But , when i click or hold capslock ,only the Spam 1 is looped . after that i tried to remove SetTimer, Spam2, OFF and both Spam 1 and Spam2 is looped but it will not stop when i release capslock . how can i solve this problem ...
by bryantan179
30 Jan 2018, 11:52
Forum: Ask for Help (v1)
Topic: help with gui
Replies: 2
Views: 676

Re: help with gui

ok sorry
by bryantan179
30 Jan 2018, 08:10
Forum: Gaming Help (v1)
Topic: question
Replies: 2
Views: 686

Re: question

ok thx
by bryantan179
30 Jan 2018, 07:48
Forum: Ask for Help (v1)
Topic: help with gui
Replies: 2
Views: 676

help with gui

I need help with creating a gui .it should be something like this https://epvpimg.com/D0HJbab but with 3 options , 'Button' ,'CS slot' and 'RButton'. For the 'Button ,it should allow me to choose from Capslock , LShift ,LCtrl ,LAlt and MButton . when i select a different button , the script should ...
by bryantan179
30 Jan 2018, 06:38
Forum: Gaming Help (v1)
Topic: question
Replies: 2
Views: 686

question

is there any difference between SetTimer, Spam, 0 and SetTimer, Spam, 10 ?? #MaxHotkeysPerInterval 9900000000000 #HotkeyInterval 9900000000000 $*Capslock:: { Send, {2 down} SetTimer, Spam, 0 KeyWait, Capslock SetTimer, Spam, OFF Send, {2 up} } Return Spam: { Send, {space down} Send, {space up} Send,...
by bryantan179
28 Jan 2018, 15:23
Forum: Ask for Help (v1)
Topic: need help with gui
Replies: 1
Views: 499

Re: need help with gui

maybe 2 empty boxes that allows you to enter any key that you want , and 1 box for RButton to select YES or NO.found a script in website that looks similar to this . not sure if thats what i want . Gui, Add, Text,, ChooseKey: Gui, Add, Hotkey, vChosenHotkey Gui, Add, Button, default, OK Gui, Show,, ...

Go to advanced search