Simple Clickbot

10/31/2010 23:31 Dreadnough#1
Hey guys,

I've created a little clickbot for me which does nothing but doing left mouseclicks 2 times a second. Outside of Cabal it works perfectly but as I try to use it in Cabal nothing happens. Can anyone help please?
(It's written in AutoIt)

Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Klickbot = GUICreate("Klickbot", 227, 79, 439, 240)
GUISetCursor (0)
GUISetBkColor(0xF0F0F0)
$Button1 = GUICtrlCreateButton("Bot starten", 40, 24, 145, 41)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1
	While 1
		MOUSECLICK("Left")
		SLEEP(500)
	WEnd
	EndSwitch
WEnd
11/02/2010 14:48 pienia#2
ever heard of gameguard? lol
11/02/2010 15:11 Dreadnough#3
Your answer wasn't helpful at all. You should either give a useful answer or stay silent.
The only thing I can deflect from your answer is that you are a troll.
11/02/2010 18:19 pienia#4
GameGuard is a program that is being automaticly executed when Cabal is run. It monitors your computer for hack-&botprograms, therefore you won't be able to control mouse/keyboard with a program while the Cabal-window is active. In order to run such a program, you need to bypass GameGuard.
Do not ask for a GameGuard bypass now.
11/03/2010 15:20 Dreadnough#5
Well, I'm not sure but I think I actually don't have to bypass the Gameguard because the scripts I use don't access the game as such.
Isn't there a way to hide the bot while running Cabal?
11/03/2010 17:26 Pupix#6
Quote:
Originally Posted by Dreadnough View Post
Well, I'm not sure but I think I actually don't have to bypass the Gameguard because the scripts I use don't access the game as such.
Isn't there a way to hide the bot while running Cabal?
It is,but you need way more skills than an AutoIT script.
11/03/2010 18:43 pienia#7
Hiding the bot=bypassing GameGuard.
If you manage to do that for one of the not-fail servers, you might get rich :P
11/03/2010 19:43 Dreadnough#8
Isn't it possible to hide the bot with a rootkit?