edit by St!gmata: Itīs only for Cabal North America because there exist now a bypass.
Like the title reads real simple bot. I do not like the pixel detection to much because it is too slow for me. So the idea behind this bot is that you make the monsters come to you (so pick a spot where they go after you). Then you just click the monsters around you and attack them 1-4 and Spam HP potions on 6. This is Autoit simply copy the code below save as Name.au3 and then double click it on your desktop. Wrote this pretty fast so ask me any questions and I am currently working on a combo bot and a faster pixel bot updates soon.
Like the title reads real simple bot. I do not like the pixel detection to much because it is too slow for me. So the idea behind this bot is that you make the monsters come to you (so pick a spot where they go after you). Then you just click the monsters around you and attack them 1-4 and Spam HP potions on 6. This is Autoit simply copy the code below save as Name.au3 and then double click it on your desktop. Wrote this pretty fast so ask me any questions and I am currently working on a combo bot and a faster pixel bot updates soon.
Code:
While 1
If WinActivate("CABAL") Then
MouseClick("left")
If Not @error Then
Sleep (50)
EndIf
Send("{Right 4}")
Send("1")
Sleep(50)
Send("2")
Sleep(50)
Send("3")
Sleep(50)
Send("4")
Send("{Right 4}")
Sleep(50)
Send("{Space}")
Sleep(50)
Send("6")
Send("{Space}")
Send("{Right 4}")
If Hex(PixelGetColor(337, 659),6) = "232223" Then
Send("{Enter}")
Sleep(100)
Send("{Up 20}")
Send("{Down 4}")
EndIf
If Hex(PixelGetColor(100, 44),6) = "1C1C1C" Then
Send("9")
EndIf
EndIf
WEnd