Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Cabal Online
You last visited: Today at 06:16

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

Advertisement



PERFECT GUIDE TO CABAL SPEEDHACK

Discussion on PERFECT GUIDE TO CABAL SPEEDHACK within the Cabal Online forum part of the MMORPGs category.

Closed Thread
 
Old 07/06/2007, 19:59   #31
 
elite*gold: 0
Join Date: Jun 2007
Posts: 112
Received Thanks: 236
man autoit it's the most easy to use low lvl user programing language. Just copy the text in Scite editor and press F5. Will work.
PS: read the freaking comments
Dizzydbd is offline  
Thanks
1 User
Old 07/06/2007, 23:53   #32


 
Jam3s1's Avatar
 
elite*gold: 75
The Black Market: 575/0/0
Join Date: Jun 2007
Posts: 2,528
Received Thanks: 411
the autologin doesnt work
wwhen I deixonnect, it will nothing happend!
but when I minimize the game, it clicks at the positions!

WHY?
the script dont looks the pixel colour at the game!
only from windows, please fix it
Jam3s1 is offline  
Thanks
1 User
Old 07/07/2007, 10:32   #33
 
elite*gold: 0
Join Date: Jan 2006
Posts: 64
Received Thanks: 3
nehmt doch einfach AC Tool zum einloggen ...

so sieht das bei mir aus


und es klappt perfect
BonDer is offline  
Thanks
1 User
Old 07/07/2007, 12:31   #34
 
elite*gold: 0
Join Date: Jun 2007
Posts: 112
Received Thanks: 236
full screen 1024x728, low graphics (i don't think it counts in the menu), and 5x speed in CH and works great (for me at least)
Dizzydbd is offline  
Thanks
1 User
Old 07/07/2007, 20:22   #35


 
Jam3s1's Avatar
 
elite*gold: 75
The Black Market: 575/0/0
Join Date: Jun 2007
Posts: 2,528
Received Thanks: 411
i make my own login script...

its bad, I know, but it work on:
1280x1024 and full window mode

no save account name

now I preogramm my own bot with autoit, it will be great, speedhack a relogger and a bot!
Code:
While 1
	If PixelGetColor(600, 570) = "0x544F4A" Then
 Sleep(100)
 WinActivate("CABAL")
	Send("{Backspace 15}")
	Send("LOGIN_NAME")
	Send("{TAB}")
 Send("{Backspace 10}")
	Send("PW_HERE") 
	Send("{Enter}") 
	EndIf
	If PixelGetColor(600, 570) = "0x131313" Then
	Send("{Right}")
	Send("{Down 7}") 
	Send("{Enter}") 
	EndIf
	If PixelGetColor(950, 720) = "0x7C7A76" Then
	Send("{Enter}")&#59;Enter 1-6 für Charakter 1-6
	EndIf
WEnd
Jam3s1 is offline  
Thanks
1 User
Old 07/07/2007, 22:29   #36
 
elite*gold: 0
Join Date: Jun 2007
Posts: 112
Received Thanks: 236
u know what's sad? that u don't even know that PixelGetColor returns the DECIMAL value and u compare it with a hex value.
IF u press Enter 2 times it won't select your 2nd Char. U have to make a Send("{Down}") before the Enter. And i thought my script is newbie =))
Dizzydbd is offline  
Thanks
1 User
Old 07/07/2007, 22:30   #37
 
elite*gold: 0
Join Date: Apr 2007
Posts: 3
Received Thanks: 3
Bot ? U have bot ? Gimme it xD
pico12 is offline  
Thanks
1 User
Old 07/07/2007, 23:39   #38


 
Jam3s1's Avatar
 
elite*gold: 75
The Black Market: 575/0/0
Join Date: Jun 2007
Posts: 2,528
Received Thanks: 411
yeah, I have
and It works great

Hey Dizzydlb, my script looks at the pixel color, then when the OK botton arrives at the server selection and at the caracter selection, and then, when it see the botton, it pushes!

im a newb in autoit scripts, but is works grat to me!
the bot, too!
Jam3s1 is offline  
Thanks
1 User
Old 07/08/2007, 01:23   #39
 
elite*gold: 0
Join Date: Jul 2007
Posts: 8
Received Thanks: 6
than upload it pls..
Hellsing2003 is offline  
Thanks
1 User
Old 07/08/2007, 03:10   #40


 
Jam3s1's Avatar
 
elite*gold: 75
The Black Market: 575/0/0
Join Date: Jun 2007
Posts: 2,528
Received Thanks: 411
it dont work on yours, I have make it only for my, sorry

it work only for my leveling arena
Jam3s1 is offline  
Thanks
1 User
Old 07/08/2007, 08:05   #41
 
elite*gold: 0
Join Date: Jun 2007
Posts: 112
Received Thanks: 236
Code:
While 1
If PixelGetColor(600, 570) = "0x544F4A" Then
 Sleep(100)
 WinActivate("CABAL")
Send("{Backspace 15}")
Send("LOGIN_NAME")
Send("{TAB}")
 Send("{Backspace 10}")
Send("PW_HERE") 
Send("{Enter}")
EndIf
If PixelGetColor(600, 570) = "0x131313" Then
Send("{Right}")
Send("{Down 7}")
Send("{Enter}")
EndIf
If PixelGetColor(950, 720) = "0x7C7A76" Then
Send("{Enter}");Enter 1-6 für Charakter 1-6
EndIf
WEnd
It's impossible for this code to work because it's WRONG. If u compare Decimal with Hex u will never get a match so the program will never continue. Correct is Hex(PixelGetColor(600, 570),6) = "544F4A"
Dizzydbd is offline  
Thanks
1 User
Old 07/08/2007, 13:36   #42


 
Jam3s1's Avatar
 
elite*gold: 75
The Black Market: 575/0/0
Join Date: Jun 2007
Posts: 2,528
Received Thanks: 411
Quote:
Originally posted by Dizzydbd@Jul 8 2007, 08:05
Code:
While 1
If PixelGetColor(600, 570) = "0x544F4A" *Then
 Sleep(100)
 WinActivate("CABAL")
Send("{Backspace 15}")
Send("LOGIN_NAME")
Send("{TAB}")
 Send("{Backspace 10}")
Send("PW_HERE") *
Send("{Enter}")
EndIf
If PixelGetColor(600, 570) = "0x131313" *Then
Send("{Right}")
Send("{Down 7}")
Send("{Enter}")
EndIf
If PixelGetColor(950, 720) = "0x7C7A76" *Then
Send("{Enter}");Enter 1-6 für Charakter 1-6
EndIf
WEnd
It's impossible for this code to work because it's WRONG. If u compare Decimal with Hex u will never get a match so the program will never continue. Correct is Hex(PixelGetColor(600, 570),6) = "544F4A"
lol, it work so grat to me, it reloggs me in 3 seconds (without downlaoding files in wondows)
omg, when it dont work, I make it, but it work great

hey, kannste deutsch?^^

so we can porgramming a bot for cabal, I already have one, but the bot stay only and when a monster near, it clicks on the monster,

it clicks just on the caracter and press skill bottons,
I need the pixelcolor or the Monster names, then I can make a great bot, can you help me?

I think about that the bot click ob all oragne tones on the screen, then it wil lclick at all monsters, that name is orange, but my porblem:
In screen the quality of the pixelcolors is bad, so I cant know the right pixel color

Or have you a Progradd, that let me see the pixelcolor under the mouse?

Here the code of my bot:
Full window on full screen: 1280x1024

Code:
While 1
	If PixelGetColor(50, 50) = "0x192228" Then&#59;if you are loggen in, the bot will start
   MouseClick("right", 631, 451)&#59;the programm klick on the middle of the screen, on your character
Send("1")&#59;The bot make skills and drop all items
Sleep(200)
Send("2")
Sleep(200)
Send("3")
Sleep(200)
Send("4")
Sleep(200)
Send("{Space}")
Sleep("200")
Send("6")
EndIf
WEnd
Jam3s1 is offline  
Thanks
1 User
Old 07/08/2007, 17:28   #43
 
elite*gold: 0
Join Date: Dec 2005
Posts: 98
Received Thanks: 21
You can make the program eventually click at random places on the screen to move there. However, you could run into a wall.

You could also select certain spots to click on the map so you run in circles.
bafao is offline  
Thanks
1 User
Old 07/08/2007, 19:05   #44


 
Jam3s1's Avatar
 
elite*gold: 75
The Black Market: 575/0/0
Join Date: Jun 2007
Posts: 2,528
Received Thanks: 411
I updated my bot, now it clicks on oragne and yellow monsters and attack them
and often I disconnected before I see monsters, in the loading screen after the caracter selection...
so, Ive updatedn my auto-login script, it restart now cheat engine and attach process and set speed


its very nice, now I can bot 24 hours a day
Jam3s1 is offline  
Thanks
1 User
Old 07/08/2007, 19:44   #45
 
elite*gold: 0
Join Date: Jul 2007
Posts: 8
Received Thanks: 6
schön für dich, was nützt uns das wenn du hier groß labern kannst aber nicht helfen. Entweder man released ein bot und laber dann oder man hält sich einfahc raus. Irgendwie habe ich das gefühl das du mit deinen beitrräge über dien "tollen bot" nur angibst...sry ist aber so.
Hellsing2003 is offline  
Thanks
1 User
Closed Thread


Similar Threads Similar Threads
[EU]Bypass for cabal GG (and speedhack guide for newbies)
10/27/2008 - Cabal Hacks, Bots, Cheats, Exploits & Macros - 11 Replies
You can bypass gameguard by cabalbot. Download is here For speed hack just download UCE, check option 'enable speedhack' and set it more than 1,0. http://img79.imageshack.us/img79/6505/beztytuuim9 .jpg I search for more hacks by UCE but most of guides not work or its for other versions of cabal :< If you know how to cheat in cabalEU by UCE write here. Sry for my english -.-
[GUIDE] Item Filter Guide | Cabal Crafting & Dungeon Guide by Dewa Gempak.
06/15/2008 - Cabal Guides & Templates - 5 Replies
Since its his work, just SHARING it here, i just gonna link his URL from his work. because i dont like copy and pasting other ppl's guides: http://119.110.98.150:90/ipb/index.php?showtopic= 1145 Q#1: Does it work with CabalRider (PH)? A#1: Yes, it works, i tried it personally myself. Q#2: I'm too dumb to understand it, how to make it work. A#2: Try reading it again and again, if u still don't know how, don't use it then sleep.gif



All times are GMT +2. The time now is 06:16.


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.