CABAL PH AutoIt

08/07/2019 19:04 sundotkalimot#1
Hello anyone using AutoIt here?

"ControlSend" function is working on Notepad window but after I changed it to CABAL window, it doesn't work anymore.

Did I miss something?

P.S. This is just a summary of my question. I can post the script snippet if you need it.
10/26/2019 00:39 johnmicel#2
Obviously because the anticheat detect the autoit. Specifically it will not appear that you are running an autoit script but your script will not do anything in the game. That is because the anti cheat preventing.
10/29/2019 23:23 wladorvir#3
Controlsend will not work, use Send method and make sure you run auto it script as administrator.
10/30/2019 01:56 johnmicel#4
Quote:
Originally Posted by wladorvir View Post
Controlsend will not work, use Send method and make sure you run auto it script as administrator.
What does this means? Send method? Key send? Send ( ) this would even not work.
10/30/2019 23:06 wladorvir#5
Yes, i'm using it every day. It's fully working with Cabal application.

#include <AutoItConstants.au3>
Exec()




Func Exec()
Sleep(2000)
While (1)
Local $hWnd = WinWait("[CLASS:D3D Window]", "", 10)
$win2 = "CABAL EXTENSION - NORMAL"
If WinActive($win2) Then
ToolTip("Cabal Opened",0,0)
Else
Exit
EndIf
Sleep(2000)


$start1 = TimerInit()
Do
Send("zz")
Send(1)
sleep(200)
Send(3)
Send('{SPACE}')
Send('{SPACE}')
sleep(200)
Until TimerDiff($start1) > 999999999999999999

WEnd
EndFunc
10/31/2019 06:59 johnmicel#6
Autoit is detected in some cabal server. Different anti cheat. This might work in gameguard. But not in xigncode. Anyway nice sharing.