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
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.
I would appreciate it if you could help me finish the script without the anti-hack giving me a DC
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