@apolong26: lol i don't have it.
@apolong26: lol i don't have it.
hey code! how about to insert this code in it?
Code:Func TargetMod() While 1 $Target = IsTarget() If $Target = 0 Then ControlSend($GameHandle,'','',"{TAB}") Else ExitLoop EndIf Sleep(72) $Target = IsTarget() If $Target = 0 Then ControlSend($GameHandle,'','',"{RIGHT down}") Sleep(72);for turning faster. ControlSend($GameHandle,'','',"{RIGHT up}") Else ExitLoop EndIf WEnd ;~ If IsTarget() # 0 Then AttackMod(0)
no. you need change
if target = 0 and client will press TAB.
if after TAB target =0 and client will press right down with option down delay or sleep
loop it until target # 0. sorry my english isn't good =.=.
you can hook action in game with autoit no need dll.
here some example script
Code:#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 #include <WinAPI.au3> #include <WindowsConstants.au3> #include <StructureConstants.au3> Opt('MustDeclareVars', 1) Global $hHook, $hStub_KeyProc, $buffer = "" _Main() Func _Main() OnAutoItExitRegister("Cleanup") Local $hmod $hStub_KeyProc = DllCallbackRegister("_KeyProc", "long", "int;wparam;lparam") $hmod = _WinAPI_GetModuleHandle(0) $hHook = _WinAPI_SetWindowsHookEx($WH_KEYBOARD_LL, DllCallbackGetPtr($hStub_KeyProc), $hmod) MsgBox(4096, "", "Click OK, then in notepad type..." & _ @LF & @LF & "Jon" & @LF & "AutoIt" & @LF & @LF & "Press Esc to exit script") Run("Notepad") WinWait("Untitled -") WinActivate("Untitled -") While 1 Sleep(10) WEnd EndFunc ;==>_Main Func EvaluateKey($keycode) If (($keycode > 64) And ($keycode < 91)) _ ; a - z Or (($keycode > 96) And ($keycode < 123)) _ ; A - Z Or (($keycode > 47) And ($keycode < 58)) Then ; 0 - 9 $buffer &= Chr($keycode) Switch $buffer Case "Jon" ToolTip("What can you say?") Case "AutoIt" ToolTip("AutoIt Rocks") EndSwitch ElseIf ($keycode > 159) And ($keycode < 164) Then Return ElseIf ($keycode = 27) Then ; esc key Exit Else $buffer = "" EndIf EndFunc ;==>EvaluateKey ;=========================================================== ; callback function ;=========================================================== Func _KeyProc($nCode, $wParam, $lParam) Local $tKEYHOOKS $tKEYHOOKS = DllStructCreate($tagKBDLLHOOKSTRUCT, $lParam) If $nCode < 0 Then Return _WinAPI_CallNextHookEx($hHook, $nCode, $wParam, $lParam) EndIf If $wParam = $WM_KEYDOWN Then EvaluateKey(DllStructGetData($tKEYHOOKS, "vkCode")) Else Local $flags = DllStructGetData($tKEYHOOKS, "flags") Switch $flags Case $LLKHF_ALTDOWN ConsoleWrite("$LLKHF_ALTDOWN" & @CRLF) Case $LLKHF_EXTENDED ConsoleWrite("$LLKHF_EXTENDED" & @CRLF) Case $LLKHF_INJECTED ConsoleWrite("$LLKHF_INJECTED" & @CRLF) Case $LLKHF_UP ConsoleWrite("$LLKHF_UP: scanCode - " & DllStructGetData($tKEYHOOKS, "scanCode") & @TAB & "vkCode - " & DllStructGetData($tKEYHOOKS, "vkCode") & @CRLF) EndSwitch EndIf Return _WinAPI_CallNextHookEx($hHook, $nCode, $wParam, $lParam) EndFunc ;==>_KeyProc Func Cleanup() _WinAPI_UnhookWindowsHookEx($hHook) DllCallbackFree($hStub_KeyProc) EndFunc ;==>Cleanup
for learn only. i don't know it yet )
Hi ,
I try to use your bot , when i start it (he change target every sec and he never hit.
What i can do for fix it? My bot mass (Tab -Change Target But Never hit)
I use The Xtrap
Sorry for my english
hi code. how do you manage to get the address? because every time I try to view where address writes the client crashes.
TIA
AIKAGB BOT UPDATE ON 32 & 64BIT
ENJOY!!!
:virus_free: http://www.virustotal.com/file-scan/rep ... 1288500757
Please register or login to download attachments.
Thnk u . I tested but it didnt work . i dont know why . I just unzip it to aikaGB's folder and open game, then open AikaGBbot 32bit.exe but it didnt work . Can u tell me why (Originally Posted by scars4
Originally Posted by Enix88
Are you using Dextrap? The bot isn't required to be placed in the same folder as AIKA.
No im not . I can open bot but it make my game broken screen and of course bot still not work =[ . Some body can help me plz
Change character and it should workOriginally Posted by Enix88