Search found 590 matches

by Yakshongas
01 Sep 2020, 08:46
Forum: Gaming Help (v1)
Topic: 8-button mouse
Replies: 3
Views: 251

Re: 8-button mouse

If the other mouse buttons can be rebbinded to other keys like F13 using the driver software it can be helped.
by Yakshongas
01 Sep 2020, 08:41
Forum: Ask for Help (v1)
Topic: Duplicate Variable Errors
Replies: 4
Views: 262

Re: Duplicate Variable Errors

Your topic can't be helped because you aren't showing any code, so we can't identify the problem, consider posting the full code if you have it or maybe the executable.
by Yakshongas
01 Sep 2020, 08:37
Forum: Gaming Help (v1)
Topic: Willing to commission for basic game script
Replies: 2
Views: 281

Re: Willing to commission for basic game script

If it's for a game it may need SetKeyDelay

Code: Select all

SetKeyDelay, 50, 50

F1::Send, /{LControl Down}v{LControl Up}{Enter}
F2::Exitapp
Discord is: Yakshongas#9893
by Yakshongas
25 Aug 2020, 14:19
Forum: Ask for Help (v1)
Topic: Hide Menu/Favorites Bar in IE browser
Replies: 1
Views: 198

Re: Hide Menu/Favorites Bar in IE browser

Maybe this? Or you can always hide it manually.

Code: Select all

F1::SendInput, {LAlt}{Right 2}{Down}{Right}{Enter}
F2::SendInput, {LAlt}{Right 2}{Down }{Right}{Down}{Enter}
by Yakshongas
25 Aug 2020, 14:04
Forum: Gaming Help (v1)
Topic: Ahk script
Replies: 1
Views: 526

Re: Ahk script

Code: Select all

~LButton::Click

; Also with the right button

~RButton::Click, Right
by Yakshongas
25 Aug 2020, 14:01
Forum: Gaming Help (v1)
Topic: [REQUEST] Help with simple script
Replies: 1
Views: 650

Re: [REQUEST] Help with simple script

This should work:

Code: Select all

SetCapsLockState, AlwaysOff
SetKeyDelay, 50, 50

CapsLock::
While, GetKeyState(A_ThisHotKey, "P")
{
    Send, {Space}g
    Sleep, 100
}
Return
by Yakshongas
25 Aug 2020, 13:51
Forum: Ask for Help (v1)
Topic: Set keybind to switch between specific window already opened
Replies: 1
Views: 1505

Re: Set keybind to switch between specific window already opened

Code: Select all

SetTitleMatchMode, 2

F1::WinActivate, Chrome ;This are just window titles examples
F2::WinActivate, Calculator
F3::WinActivate, Notepad
F4::WinActivate, Windows Media
F5::WinActivate, Pinball
F6::WinActivate, Visual Studio Code
by Yakshongas
25 Aug 2020, 13:45
Forum: Automatización de Juegos
Topic: ayuda en kurtzpel Topic is solved
Replies: 4
Views: 3669

Re: ayuda en kurtzpel Topic is solved

Code: Select all

1:: ;Combo larga duracion
    Click, 2
    Sleep, 3500
    Click, Left, Down
    SendEvent, {LShift}
    Click, Left, Up
    Click, 2
    Click, Right 
    SendEvent, {Space}
Return

2:: ;Combo alta resistencia
    Click, Right, Down
    Click
    Click, Right, Up
    Click, Right, 3
Return
by Yakshongas
25 Aug 2020, 13:38
Forum: Gaming Help (v1)
Topic: Help making an automatic key presser
Replies: 1
Views: 189

Re: Help making an automatic key presser

F1:: SetTimer, Nr2, % (Toggle := !Toggle) ? 1100 : "Off" SetTimer, Nr3, % (Toggle2 := !Toggle2) ? 8100 : "Off" SetTimer, Nr4, % (Toggle3 := !Toggle3) ? 15100 : "Off" SetTimer, Nr5, % (Toggle4 := !Toggle4) ? 5100 : "Off" Return Nr2: Send, 2 Return Nr3: Send, 3 Return Nr4: Send, 4 Return Nr5: Send, 5...
by Yakshongas
15 Aug 2020, 17:02
Forum: Ask for Help (v1)
Topic: Typing Cursor Position Topic is solved
Replies: 5
Views: 5197

Re: Typing Cursor Position Topic is solved

Keep in mind that this code might not work on all programs but give it a try.

Code: Select all

F1::
MouseMove, % A_CaretX, % A_CaretY
Click, Right
Return
by Yakshongas
15 Aug 2020, 16:56
Forum: Gaming Help (v1)
Topic: Toggle Script Automatic start ON Topic is solved
Replies: 1
Views: 1262

Re: Toggle Script Automatic start ON Topic is solved

Just Add, Gosub, F5 before the F5 hotkey, like this:

Code: Select all

Gosub, F5
F5::
 Toggle := !Toggle
    while Toggle
    .
    .
    .
by Yakshongas
15 Aug 2020, 16:54
Forum: Ask for Help (v1)
Topic: Holding down and pressing multiple keys
Replies: 1
Views: 1126

Re: Holding down and pressing multiple keys

Code: Select all

F1::
    Send, {s Down}
    Sleep, 30
    Send, j
    Sleep, 1000
    Send, {LShift}
    Sleep, 30
    Send, {s Up}
    Sleep, 30
    Send, {Space}
    Sleep, 100
    Send, k
Return
by Yakshongas
15 Aug 2020, 16:50
Forum: Gaming Help (v1)
Topic: Help please for Anti-afk
Replies: 1
Views: 862

Re: Help please for Anti-afk

There is missing information in the topic.

What do you need to do to not become AFK?
by Yakshongas
15 Aug 2020, 16:45
Forum: Gaming Help (v1)
Topic: How to merge these scripts?I am new
Replies: 1
Views: 923

Re: How to merge these scripts?I am new

Like this, also made the code a bit more optimized.

Code: Select all

SetMouseDelay, 28

XButton1::
While, GetKeyState(A_ThisHotkey, "P")
{
    Click, Right
}
Return

XButton2::
While, GetKeyState(A_ThisHotKey, "P")
{
    Click, Left
}
Return

F9::Suspend
by Yakshongas
15 Aug 2020, 16:32
Forum: Ask for Help (v1)
Topic: Use LWin as a replacement for LControl in VS code
Replies: 1
Views: 1144

Re: Use LWin as a replacement for LControl in VS code

Maybe this? I also use VSCode and works for me.

Code: Select all

#If WinActive("ahk_exe Code.exe")
    *LWin::LControl
#If
by Yakshongas
15 Aug 2020, 16:28
Forum: Gaming Help (v1)
Topic: Need help to make a simple script Topic is solved
Replies: 1
Views: 1081

Re: Need help to make a simple script Topic is solved

Code: Select all

XButton1::
While, GetKeyState("XButton1", "P")
{
    Send, c
    Sleep, 50
    Click, Left
    Sleep, 50
}
Return
by Yakshongas
10 Aug 2020, 05:06
Forum: Gaming Help (v1)
Topic: "Spam" script
Replies: 2
Views: 2118

Re: "Spam" script

Code: Select all

F1::Settimer, Spam, % (Toggle := !Toggle) ? "Off" : 20000

Spam:
SendRaw, ;test
Return
by Yakshongas
09 Aug 2020, 07:01
Forum: Ask for Help (v1)
Topic: Mapping enter key to double click?
Replies: 2
Views: 1388

Re: Mapping enter key to double click?

Code: Select all

Enter::Click, 2
by Yakshongas
09 Aug 2020, 06:59
Forum: Ask for Help (v1)
Topic: Help with toggle, toggle not working
Replies: 2
Views: 1463

Re: Help with toggle, toggle not working

You forgot to add on the top of the script #Maxthreadsperhotkey, 2

Go to advanced search