Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Cabal Online
You last visited: Today at 20:50

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Auto Clicker

Discussion on Auto Clicker within the Cabal Online forum part of the MMORPGs category.

Reply
 
Old   #1
 
-Chrome-'s Avatar
 
elite*gold: 20
Join Date: Jul 2006
Posts: 2,545
Received Thanks: 878
Auto Clicker

For the ones who posted / pmed me...

Here's my own little program, which clicks as long as you want (written with autoit).

Very very useful for the ^^



(It may have a normal font on your pc.)


Left:
Type your number of clicks in the white box and click "Left" for left clicks.
When all clicks are done, you get a small message.

Right:
Type your number of clicks in the white box and click "Right" for right clicks.

Shop:
Type your number of clicks in the white box and click "Shop" for buying in a webshop (it works only on server with a user panel and a resolution of 1024*768, then the panel is on the correct place)

Glory:
Type your number of clicks in the white box and click "Glory" for using Glory Potions in your inventory. (Tested with oldschool skin) It's still bugged, if someone has a solution for it pm me.

Credits:
Just some credits.


Strg + Alt + X (Ctrl + Alt + X) closes the program, if you want to exit the program before all clicks are done.

Have fun

Source Code:
Quote:
#NoTrayIcon
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=..\xxx\icon.ico
#AutoIt3Wrapper_Outfile=Clicker.exe
#AutoIt3Wrapper_Res_Comment=Clicks as much as you want.
#AutoIt3Wrapper_Res_Description=Clicker
#AutoIt3Wrapper_Res_Fileversion=1.8
#AutoIt3Wrapper_Res_LegalCopyright=Chrome
#AutoIt3Wrapper_Res_Language=1031
#AutoIt3Wrapper_Res_Field=Mady by|Chrome
#AutoIt3Wrapper_Au3Check_Stop_OnWarning=y
#AutoIt3Wrapper_Run_Tidy=y
#AutoIt3Wrapper_Tidy_Stop_OnError=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

#Region ### START Koda GUI section ### Form=c:\xxx\clicker.kxf
$box = GUICreate("Clicker", 203, 50, 193, 125)
GUISetCursor(3)
GUISetBkColor(0x000000)
$startleft = GUICtrlCreateButton("Left", 0, 0, 57, 25, 0)
GUICtrlSetFont(-1, 12, 400, 0, "Base 05")
GUICtrlSetCursor(-1, 3)
$startshop = GUICtrlCreateButton("Shop", 0, 24, 57, 25, 0)
GUICtrlSetFont(-1, 12, 400, 0, "Base 05")
GUICtrlSetCursor(-1, 3)
$startright = GUICtrlCreateButton("Right", 56, 0, 65, 25, 0)
GUICtrlSetFont(-1, 12, 400, 0, "Base 05")
GUICtrlSetCursor(-1, 3)
$glory = GUICtrlCreateButton("Glory", 56, 24, 65, 25, 0)
GUICtrlSetFont(-1, 12, 400, 0, "Base 05")
GUICtrlSetCursor(-1, 3)
$credits = GUICtrlCreateButton("Credits", 120, 24, 81, 25, 0)
GUICtrlSetFont(-1, 12, 400, 0, "Base 05")
GUICtrlSetCursor(-1, 3)
$input1 = GUICtrlCreateInput("100000", 120, -8, 81, 33)
GUICtrlSetFont(-1, 12, 800, 0, "Base 05")
GUICtrlSetCursor(-1, 3)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
GUISetIcon("\cabal.exe")
GUISetCursor(3)
GUISetBkColor(0x000000)
$g_szVersion = "ClickScript"
If WinExists($g_szVersion) Then Exit
AutoItWinSetTitle($g_szVersion)
HotKeySet("^!x", "HotkeyExit")
HotKeySet("^!c", "HotkeyEnde")
$inp = 0

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
If $nMsg = $startleft Then
$i = 0
$inp = GUICtrlRead($input1)
If Not IsDeclared("sToolTipAnswer") Then Local $sToolTipAnswer
If $inp >= 1 Then
Do
Sleep(300)
MouseClick("left")
$i = $i + 1
$sToolTipAnswer = ToolTip("" & $i & "", 500, 500, "Clicks:", 0, 0)
Until $i = $inp
$sToolTipAnswer = ToolTip("Fertig: " & $i & "", 500, 500, "Clicks:", 0, 0)
EndIf
EndIf
If $nMsg = $startright Then
$i = 0
$inp = GUICtrlRead($input1)
If Not IsDeclared("sToolTipAnswer") Then Local $sToolTipAnswer
If $inp >= 1 Then
Do
Sleep(300)
MouseClick("right")
$i = $i + 1
$sToolTipAnswer = ToolTip("" & $i & "", 500, 500, "Clicks:", 0, 0)
Until $i = $inp
$sToolTipAnswer = ToolTip("Fertig: " & $i & "", 500, 500, "Clicks:", 0, 0)
EndIf
EndIf

If $nMsg = $startshop Then
$j = 0
$inp = GUICtrlRead($input1)
If Not IsDeclared("sToolTipAnswer") Then Local $sToolTipAnswer
Do
$coord1 = PixelSearch(490, 280, 700, 580, 0x4F0303)
If Not @error Then
Sleep(1000)
MouseClick("left", $coord1[0], $coord1[1])
EndIf
Sleep(400)
$coord2 = PixelSearch(447, 550, 700, 580, 0xEEEEEE)
If Not @error Then
Sleep(1500)
MouseClick("left", $coord2[0], $coord2[1])
$sToolTipAnswer = ToolTip("Fertig: " & $j & "", 500, 500, "Items:", 0, 0)
EndIf
$j = $j + 1
Until $j = $inp
$sToolTipAnswer = ToolTip("Fertig: " & $j & "", 500, 500, "Items:", 0, 0)
EndIf

If $nMsg = $glory Then
$j = 0
$inp = GUICtrlRead($input1)
If Not IsDeclared("sToolTipAnswer") Then Local $sToolTipAnswer
Do
$coord3 = PixelSearch(800, 340, 1020, 560, 0xE3DFA4)
;$coord3 = PixelSearch(800, 340, 1020, 560, 0xE2E2E2) ;potion
If Not @error Then
Sleep(200)
MouseClick("right", $coord3[0], $coord3[1])
EndIf
;$coord4 = PixelSearch(385, 280, 685, 320, 0x020204)
$coord4 = PixelSearch(385, 280, 685, 320, 0xC7C7C7) ;yes
If Not @error Then
Sleep(200)
MouseClick("left", $coord4[0], $coord4[1])
Send("I")
Send("I")
$sToolTipAnswer = ToolTip("" & $j & "", 500, 500, "Pots:", 0, 0)
EndIf
Sleep(1500)
$j = $j + 1
Until $j = $inp
EndIf

If $nMsg = $credits Then
MsgBox(0, "Clicker", " ##################" & @CRLF & " # This Program Clicks #" & @CRLF & " # As Much As You Want #" & @CRLF & " ##################" & @CRLF & " # (c) Chrome 2008 #" & @CRLF & " ##################")
EndIf
WEnd
Func HotkeyExit()
Exit
EndFunc ;==>HotkeyExit
Func HotkeyEnde()
$j = $inp
$i = $inp
EndFunc ;==>HotkeyEnde




Attached Files
File Type: rar Clicker_v1.8.rar (241.8 KB, 5789 views)
-Chrome- is offline  
Thanks
36 Users
Old 11/27/2008, 20:26   #2
 
elite*gold: 0
Join Date: Mar 2008
Posts: 50
Received Thanks: 3
It is impossible to click every 0,3sec because it add stats only if it change i think..
But i go to try it..
Edit: ok it is work but it is work how i said:add stats only every changing your Bracelet or Earring..
But it is nice too

And please can you send me or give here the .au3 file?I am noob at autoIT and i want to lear something thx..
nemamzadnymeno is offline  
Thanks
1 User
Old 11/27/2008, 22:17   #3
 
elite*gold: 0
Join Date: Jul 2007
Posts: 13
Received Thanks: 12
But the Statshack does not work anymore, so this is quite useless, isn't it?
Controlled is offline  
Thanks
1 User
Old 11/28/2008, 00:37   #4
 
-Chrome-'s Avatar
 
elite*gold: 20
Join Date: Jul 2006
Posts: 2,545
Received Thanks: 878
Quote:
Originally Posted by nemamzadnymeno View Post
It is impossible to click every 0,3sec because it add stats only if it change i think..
But i go to try it..
Edit: ok it is work but it is work how i said:add stats only every changing your Bracelet or Earring..
But it is nice too

And please can you send me or give here the .au3 file?I am noob at autoIT and i want to lear something thx..
Yeah sure it only give stats when the items are exchanged. But if it click only every 1 second, you would lose around ~0,1-0,7 seconds each click. Calculate that for 1000 clicks and you know why I let it click every 0,3 seconds.

I can send you the .au3 file later, but I'm too tired now.


Quote:
Originally Posted by Controlled View Post
But the Statshack does not work anymore, so this is quite useless, isn't it?
It doesn't work on every server, but on many private servers.





@people
don't leech, be thankful :P
-Chrome- is offline  
Thanks
4 Users
Old 11/29/2008, 00:40   #5
 
-Chrome-'s Avatar
 
elite*gold: 20
Join Date: Jul 2006
Posts: 2,545
Received Thanks: 878
added the source code, use it if you need it
-Chrome- is offline  
Thanks
3 Users
Old 11/29/2008, 10:13   #6
 
elite*gold: 0
Join Date: Mar 2008
Posts: 50
Received Thanks: 3
thank you man :P
nemamzadnymeno is offline  
Old 12/01/2008, 10:06   #7
 
elite*gold: 0
Join Date: Jun 2008
Posts: 196
Received Thanks: 13
how to use it? cant understand lol

when adding stats u must click left click right? what is the purpose of right click?
lourence8 is offline  
Old 12/01/2008, 10:20   #8
 
Kareo's Avatar
 
elite*gold: 53
Join Date: May 2007
Posts: 2,424
Received Thanks: 480
rightclick on Dummy with skill -> Alt+Tab -> Autoattack
:-)
Kareo is offline  
Old 12/01/2008, 11:56   #9
 
elite*gold: 0
Join Date: Jun 2008
Posts: 118
Received Thanks: 20
i need for left clicker for stats pls
kaan008 is offline  
Old 12/01/2008, 14:59   #10
 
elite*gold: 0
Join Date: Jun 2008
Posts: 196
Received Thanks: 13


download and follow the steps..

autoclicker for adding stats

enjoy
lourence8 is offline  
Thanks
1 User
Old 12/05/2008, 19:29   #11
 
-Chrome-'s Avatar
 
elite*gold: 20
Join Date: Jul 2006
Posts: 2,545
Received Thanks: 878
Quote:
Originally Posted by lourence8 View Post
how to use it? cant understand lol

when adding stats u must click left click right? what is the purpose of right click?
Have you read my linked thread?
I don't understand your sentence!

Quote:
Originally Posted by ProGAYmer View Post
rightclick on Dummy with skill -> Alt+Tab -> Autoattack
:-)
Same like the post before -_-


Quote:
Originally Posted by kaan008 View Post
i need for left clicker for stats pls
With same function? Anyway, I added left click.

Quote:
Originally Posted by lourence8 View Post


download and follow the steps..

autoclicker for adding stats

enjoy
Autoclicker.sfx.exe ? ...
-Chrome- is offline  
Old 12/26/2008, 20:11   #12
 
elite*gold: 0
Join Date: Nov 2007
Posts: 1
Received Thanks: 0
wow thanks alot
stavy is offline  
Old 01/04/2009, 16:51   #13
 
elite*gold: 0
Join Date: Oct 2008
Posts: 199
Received Thanks: 21
i put 500 in and than click right click than i click on cabal and than nothing happend i realy dont now why
meneerfun is offline  
Old 01/05/2009, 03:37   #14
 
-Chrome-'s Avatar
 
elite*gold: 20
Join Date: Jul 2006
Posts: 2,545
Received Thanks: 878
Quote:
Originally Posted by meneerfun View Post
i put 500 in and than click right click than i click on cabal and than nothing happend i realy dont now why
are you using it on a server with gameguard, xtrap, .....?




Added a small function which shows you, how often the program has already clicked.
-Chrome- is offline  
Old 01/05/2009, 08:22   #15
 
elite*gold: 0
Join Date: Nov 2008
Posts: 36
Received Thanks: 7
Chrome nice script! but this isn't working for me I play Private Server, no effect on my Client, the same thing with Macros.

Could it be Client Version?
Suprav12 is offline  
Reply


Similar Threads Similar Threads
[MINI HACK] Auto Typer and Auto Clicker
05/27/2010 - Runescape - 7 Replies
Hay Leute =) Ich hab mir da mal son Programm runtergeladen, damit könnt ihr Thieving voll leicht lvln ^^ Und sich damit richtig Geld machen ^^ Also wenn ihr kein bock auf ganze Zeit clicken habt hier Downloaden. Einschalten und dann könnt ihr essen gehen, Fernseh schauen oder was weiß ich^^ Nur aufpassen wenn server abstürzt.. Dann müst ihr ihn ausschalten, Einloggen und wieder einschalten ^^ (manchmal muss man bei Vista als Administator starten)
[autoit] auto clicker/auto typer any sro
12/06/2009 - SRO PServer Guides & Releases - 4 Replies
I found this on a different website but this also works on any sro and i havent tested auto typer yet but the auto clicker works 100%. :handsdown: Download: MEGAUPLOAD - The leading online storage and file delivery service here is the scan: Virustotal. MD5: 2a7cf13acb76bd371fc77250462deb7d Win32.SuspectCrc!IK Trojan.Agent.ATV Win32.SuspectCrc even tho it says its a malware but its safe but id suggest wait for a mod cuz i did not make this
[REALEASE] Runescape Auto Typer/Auto clicker/Autominer
09/01/2009 - Runescape - 3 Replies
No explaination is needed, they are 2 simple programs one RS client by garyshood that which maintains Auto typer(just incase you need explaination: click auto typer press add type in the text u want reapeated press F12 to start) and auto clicker (set amount of clicks per second) the Autominer, just run it and it will lead you through the rest. I Have a Virus! Report overview Scanned by viruschief.com Please leave thanks



All times are GMT +2. The time now is 20:50.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.