Hello, i am new to autoit language
i made aimbot for game but when i tested it i found that it doesn't work
i made an other one for aim on firefox shortcut and it worked !
my friend told that the game using different mouse coordinates than the "normal" one which system using it
he told me also i must use memorywrite function (i found y,x values using cheat engine)
i made aimbot for game but when i tested it i found that it doesn't work
i made an other one for aim on firefox shortcut and it worked !
my friend told that the game using different mouse coordinates than the "normal" one which system using it
he told me also i must use memorywrite function (i found y,x values using cheat engine)
what i should do next?Quote:
$Aimbot = "Aimbot"
$W = Msgbox(33 ,$Aimbot,"Made by FireStorm")
If $W = 2 Then
Exit
EndIf
HotKeySet("{x}", "Start")
HotKeySet("{F6}", "_Exit")
HotKeySet("{p}", "Pause")
While 1
Sleep(250)
WEnd
func Start()
While 1
$target = PixelSearch(0, 0, 1366, 768,0xFFFFFF,1)
if IsArray($target) Then
Mousemove($target[0], $target[1] ,1)
Endif
WEnd
EndFunc
func Pause()
while 1
sleep(100)
WEnd
EndFunc
Func _Exit()
Exit
EndFunc