S4League Aimbot Script Help.

02/23/2013 12:30 SilverEmerald#1
i can make aimbot work in lobby , server channel or somewhere else. but it doesnt work ingame. my script is :

HotKeySet("{q}","_Exit")

While 1
$Variable = PixelSearch(8,9,1016,758,0x650A19)
If IsArray($Variable) = True Then
MouseMove($Variable [0], $Variable [1], 1)
EndIf
WEnd

Func _Exit()
Exit
EndFunc


is that true ? if it isnt , can some1 help me ? ty. :/
02/23/2013 13:10 abc...xyz#2
Is that the hole code?
02/24/2013 17:36 FacePalmMan#3
you cant use mousemove/mouseclick/send/controlsend because xtrap blocks it. search on google for "autoit postmessage_send". that should work.
02/25/2013 22:29 elmarcia#4
Quote:
Originally Posted by SilverEmerald View Post
i can make aimbot work in lobby , server channel or somewhere else. but it doesnt work ingame. my script is :

HotKeySet("{q}","_Exit")

While 1
$Variable = PixelSearch(8,9,1016,758,0x650A19)
If IsArray($Variable) = True Then
MouseMove($Variable [0], $Variable [1], 1)
EndIf
WEnd

Func _Exit()
Exit
EndFunc


is that true ? if it isnt , can some1 help me ? ty. :/
Remove hotkeyset and replace with _IsPressed the script should look like this


#include <Misc.au3>

While 1
$Variable = PixelSearch(8,9,1016,758,0x650A19)

If IsArray($Variable) = True Then
MouseMove($Variable [0], $Variable [1], 1)
EndIf
if _IsPressed("51") Then ;51 is the q key
_Exit()
WEnd

Func _Exit()
Exit
EndFunc

Thanks if it help