Makro Help needed

04/16/2020 10:26 doromier#1
Hey I'm trying to program my own bot: I came to the problem that the game detects any macro program that I'm trying to use. Unless I use my Hardware Mouse or Keyboard makro-program, like Logitech or Razor.
Do you guys know any hardware that can simulate the keys I'm pressing.

Gerne auch auf deutsch antworten , danke im vorraus
04/17/2020 22:34 Fl00d3R#2
Probiere die Au3 Funktionen.
Vermutlich benutzt du ein einfaches Send. Damit wird es nicht. Du solltest ein seperates Keydown & Keyup benutzen, um ein drücken einer Taste für mehrere ms zu simulieren.

Quote:
Func up()
Send("{UP DOWN}")
While _IsPressed('57')
Sleep(10)
WEnd
Send("{UP UP}")
EndFunc

func left()
send("{left Down}")
While _ispressed("64")
sleep(10)
WEnd
send("{left up}")
EndFunc

func right()
send("{right down}")
While _ispressed("66")
Sleep(10)
WEnd
Send("{right up}")
EndFunc
Und wichtig #RequireAdmin an Anfang.
05/06/2020 16:39 RedemptionValorant#3
The game migh be scanning your computer for blacklisted strings or windows name, there are some windows hidder programs that could help you, else just code it in c++ it's probably easier if you can make a packet bot.