Help in AHK combo hack mu online

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Süper Üye
Katılım
15 May 2020
Mesajlar
621
Tepki puanı
43
Ödüller
7
Yaş
31
6 HİZMET YILI
Hello guys,

i'm need help with make a macro in AHK because the anti cheat of the game block all macros send methods.
I'm want to build a macro that send keys of the numbers 1, 2, 3 to switch between skills in the game to make a combo
I made a few scripts but the anti cheats dc me when i execute them
the anti cheat not let me to send a numbers but i can send a letters to the game by the script.
example of the scripts:

regular script - dc by anticheat
AutoHotkey:
SetTitleMatchMode, 2
WinActivate, Unique MU Online

Loop
{
    Send, {1 down}
    Sleep, 50
    Send, {1 up}
    Sleep, 1000
    Send, {2 down}
    Sleep, 50
    Send, {2 up}
    Sleep, 1000
    Send, {3 down}
    Sleep, 50
    Send, {3 up}
    Sleep, 1000
}

in this script i use the asc of the numbers of 1, 2, 3 its actuali work and the anticheat not dc me but its send the number only in the chat of the game, but not make the action to switch between the skills in the game.

AutoHotkey:
SetTitleMatchMode, 2
WinActivate, Unique MU Online

Loop
{
Send, {Asc 049 down}
Sleep, 50
Send, {Asc 049 up}
Sleep, 1000
Send, {Asc 050 down}
Sleep, 50
Send, {Asc 050 up}
Sleep, 1000
Send, {Asc 051 down}
Sleep, 50
Send, {Asc 051 up}
Sleep, 1000
}

I would appreciate it if you could help me finish the script without the anti-hack giving me a DC
 
Onaylı Üye
Katılım
20 Şub 2021
Mesajlar
65
Tepki puanı
5
Ödüller
4
Yaş
29
5 HİZMET YILI
which programming language I need to know to work about this hacking ?can anyone tell me please ?
 
Onaylı Üye
Katılım
16 Tem 2021
Mesajlar
51
Tepki puanı
3
Ödüller
2
Yaş
37
4 HİZMET YILI
try this

#NoEnv #SingleInstance force SetBatchLines -1 Loop { SendInput 1 Sleep 100 SendInput 2 Sleep 100 SendInput 3 Sleep 1000 }
 
Onaylı Üye
Katılım
5 Şub 2019
Mesajlar
65
Tepki puanı
3
Ödüller
6
Yaş
29
7 HİZMET YILI
which programming language I need to know to work about this hacking
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst