Page 18 of 22 FirstFirst ... 81617181920 ... LastLast
Results 171 to 180 of 215
  1. #171
    codename209
    codename209 is offline
    Member-in-training
    Join Date
    2010 Jun
    Posts
    67
    Thanks Thanks Given 
    30
    Thanks Thanks Received 
    86
    Thanked in
    1 Post
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    @apolong26: lol i don't have it.

  2. The Following User Says Thank You to codename209 For This Useful Post:


  3. #172
    kazaam00nix
    kazaam00nix is offline
    New member
    Join Date
    2010 Oct
    Posts
    28
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    4
    Thanked in
    0 Posts
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    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)

  4. #173
    codename209
    codename209 is offline
    Member-in-training
    Join Date
    2010 Jun
    Posts
    67
    Thanks Thanks Given 
    30
    Thanks Thanks Received 
    86
    Thanked in
    1 Post
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    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 )

  5. The Following User Says Thank You to codename209 For This Useful Post:


  6. #174
    Manu1908
    Manu1908 is offline
    New member
    Join Date
    2010 Oct
    Posts
    4
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    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

  7. #175
    jeorgen3x
    jeorgen3x is offline
    Guest
    Join Date
    2010 Oct
    Posts
    1
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    hi code. how do you manage to get the address? because every time I try to view where address writes the client crashes.
    TIA

  8. #176
    scars4
    scars4 is offline
    New member
    Join Date
    2010 Sep
    Posts
    4
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    AIKAGB BOT UPDATE ON 32 & 64BIT
    ENJOY!!!

    :virus_free: http://www.virustotal.com/file-scan/rep ... 1288500757

    Please register or login to download attachments.


  9. The Following User Says Thank You to scars4 For This Useful Post:


  10. #177
    Enix88
    Enix88 is offline
    New member
    Join Date
    2010 Oct
    Posts
    5
    Thanks Thanks Given 
    8
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    Quote Originally Posted by scars4
    AIKAGB BOT UPDATE ON 32 & 64BIT
    ENJOY!!!

    :virus_free: http://www.virustotal.com/file-scan/rep ... 1288500757
    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 (

  11. #178
    faustxiii
    faustxiii is offline
    New member faustxiii's Avatar
    Join Date
    2010 Oct
    Posts
    30
    Thanks Thanks Given 
    17
    Thanks Thanks Received 
    11
    Thanked in
    3 Posts
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    Quote Originally Posted by Enix88
    Quote Originally Posted by scars4
    AIKAGB BOT UPDATE ON 32 & 64BIT
    ENJOY!!!

    :virus_free: http://www.virustotal.com/file-scan/rep ... 1288500757
    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 (

    Are you using Dextrap? The bot isn't required to be placed in the same folder as AIKA.

  12. The Following User Says Thank You to faustxiii For This Useful Post:


  13. #179
    Enix88
    Enix88 is offline
    New member
    Join Date
    2010 Oct
    Posts
    5
    Thanks Thanks Given 
    8
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    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

  14. #180
    ovrlookd
    ovrlookd is offline
    New member
    Join Date
    2010 Sep
    Posts
    38
    Thanks Thanks Given 
    9
    Thanks Thanks Received 
    3
    Thanked in
    0 Posts
    Rep Power
    0

    re: Aika global bot & Aika EN bot beta test

    Quote Originally Posted by Enix88
    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 work

  15. The Following User Says Thank You to ovrlookd For This Useful Post:


Page 18 of 22 FirstFirst ... 81617181920 ... LastLast

Similar Threads

  1. [Help] Do Aika Global Hacks work with Aika SEA?
    By rara23 in forum Aika Online
    Replies: 17
    Last Post: 2011-07-04, 04:32 PM
  2. [Request] Aika Global ver.140
    By ThePunisher313 in forum Aika Online
    Replies: 1
    Last Post: 2010-12-19, 03:13 PM
  3. Global Aika
    By soullife in forum Aika Online
    Replies: 41
    Last Post: 2010-11-29, 04:16 PM
  4. [Guide] Passing lvl 51 Aika Global
    By hudas123 in forum Aika Guides, Tutorials
    Replies: 4
    Last Post: 2010-11-13, 10:43 AM
  5. How to play AIKA Global?
    By ashH in forum Aika Online
    Replies: 3
    Last Post: 2010-10-18, 10:37 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •