Register for your free account! | Forgot your password?

You last visited: Today at 01:58

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

Advertisement



[GUIDE] How to make a bot

Discussion on [GUIDE] How to make a bot within the Dragonica Hacks, Bots, Cheats & Exploits forum part of the Dragonica category.

Reply
 
Old 12/11/2009, 04:18   #16
 
elite*gold: 0
Join Date: Mar 2008
Posts: 5
Received Thanks: 0
LoL , i tested with notepad and works fine.. ==" maybe i should try removing that :]
ken_devil is offline  
Old 12/11/2009, 05:03   #17
 
kijero's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 146
Received Thanks: 23
With this can I make a bot with other MMORPG games?
kijero is offline  
Old 12/11/2009, 06:06   #18
 
kijero's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 146
Received Thanks: 23
Looking forward for your chapter 3 sir!
kijero is offline  
Old 12/11/2009, 07:05   #19
 
elite*gold: 0
Join Date: Mar 2008
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by TheForsaken View Post
You can use ControlSend instead of Send function to send to key to specific window (with out it having to be on top or anything)
Code:
ControlSend ( "title", "text", controlID, "string" [, flag] )
Where should I add it? Try use the script i did and make an example for it plz ><
ken_devil is offline  
Old 12/11/2009, 21:45   #20
 
TheForsaken's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 63
Received Thanks: 645
Quote:
Originally Posted by ken_devil View Post
Where should I add it? Try use the script i did and make an example for it plz ><
Replace it with the Send function.

PHP Code:
ControlSend("Dragonica (Client Ver : 1.0.10)""""""{ENTER}")
Sleep("100")
ControlSend("Dragonica (Client Ver : 1.0.10)""""""test"
Sleep("100")
ControlSend("Dragonica (Client Ver : 1.0.10)""""""{ENTER}"
TheForsaken is offline  
Old 12/12/2009, 02:47   #21
 
TheForsaken's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 63
Received Thanks: 645
Updated chapter 3, will add on to it when ever I have the time.
TheForsaken is offline  
Thanks
2 Users
Old 12/14/2009, 12:56   #22
 
elite*gold: 0
Join Date: Dec 2008
Posts: 25
Received Thanks: 5
Might as well make a web page and post that, since you'll have a hard time posting like a 10 page tutorial. But its a good start, though I doubt the majority of the community will use it. But there are a few good apples in this bunch that will at least try :]
deadlyp99 is offline  
Old 12/18/2009, 09:48   #23
 
elite*gold: 0
Join Date: Dec 2009
Posts: 6
Received Thanks: 0
Forsaken can u send me the bot program cause im not sure i can make it im only 6 grade and not really good at computer
pompokoking is offline  
Old 12/18/2009, 10:54   #24
 
elite*gold: 0
Join Date: Dec 2008
Posts: 25
Received Thanks: 5
pompokoking. sorry, but stfu.
I've known people your age learning this **** better then I did at that age.

Go to the library, use google, and learn about computers and programming. If your old enough to use the internet (and use good english) then your old enough to act adult enough to learn, or at least follow the guide.

Sorry, this is edged. But I just have a strong dislike of spoon feeding, and even more when people ask for someone else to hold to spoon.

This thread is here to help you learn, if it's beyond your grasp, work till your at or close to understanding it and you'll be well on your way.

... have a good day
deadlyp99 is offline  
Thanks
1 User
Old 12/18/2009, 16:21   #25
 
elite*gold: 0
Join Date: Mar 2009
Posts: 29
Received Thanks: 3
Thank you very much for this AWESOME guid!
U skipped 1 day of searching for the right way to create my writing bot :nut:
Thx :P
SuperZim is offline  
Old 12/19/2009, 01:10   #26
 
elite*gold: 0
Join Date: Dec 2009
Posts: 6
Received Thanks: 0
thks Deadlyp99 u make me wanna try to do it
pompokoking is offline  
Old 12/19/2009, 01:10   #27
 
elite*gold: 0
Join Date: Dec 2009
Posts: 6
Received Thanks: 0
is it gonna be block by anti hacking tool from dragonica?
pompokoking is offline  
Old 12/19/2009, 01:19   #28
 
elite*gold: 0
Join Date: Dec 2009
Posts: 6
Received Thanks: 0
this is wat i did i very pls u to edit my and fix my problem or anything that i did wrong, thks


#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: Pom
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>
GUICreate ( "Dragonica Bot", 535, 200)
GUICTRLCreateLabel ( "Talk 1", 8, 10)
$key1 = GUICtrlCreateInput ( "", 40, 8, 130)
GUICTRLCreateLabel ( "Talk 2", 8, 40)
$key2 = GUICtrlCreateInput ( "", 40, 38, 130)
GUICTRLCreateLabel ( "Talk 3", 8, 70)
$key3 = GUICtrlCreateInput ( "", 40, 68, 130)
GUICTRLCreateLabel ( "Interval" , 30, 100)
$Interval = GUICtrlCreateInput ( "10000", 78, 98, 50)
$startbutton = GUICtrlCreateButton("Start Bot", 75, 128, 100)

GUISetState(@SW_SHOW)

While 1
$msg = GUIGetMsg()
Select

Case $msg = $startbutton
$send1 = GUICtrlRead($key1)
$sleep1 = GUICtrlRead($Interval)
$send2 = GUICtrlRead($key2)
$sleep1 = GUICtrlRead($Interval)
$send3 = GUICtrlRead($key3)
$sleep1 = GUICtrlRead($Interval)
While 1
ControlSend("Dragonica (Client Ver : 1.0.12)", "", "", "{ENTER}")
Sleep("100")
ControlSend("Dragonica (Client Ver : 1.0.12)", "", "", "test"
Sleep("100")
ControlSend("Dragonica (Client Ver : 1.0.12)", "", "", "{ENTER}")
WEnd

Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop

EndSelect

WEnd



















While 1
sleep(1)
WEnd
pompokoking is offline  
Old 12/19/2009, 07:51   #29
 
elite*gold: 0
Join Date: Dec 2008
Posts: 25
Received Thanks: 5
What was the problem with it?

From my tests with macro monkey I was unable to make most input/reads in full screen mode. I was able to spam X several times a second with the use of a hotkey.

I havn't used Autoit for the game, and won't because I dislike the syntax, but I program, so explain the problem and i'll see if I can see anything blatent
deadlyp99 is offline  
Old 12/19/2009, 16:11   #30
 
TheForsaken's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 63
Received Thanks: 645
Quote:
Originally Posted by pompokoking View Post
this is wat i did i very pls u to edit my and fix my problem or anything that i did wrong, thks


PHP Code:
#cs ----------------------------------------------------------------------------
    
AutoIt Version3.3.0.0
    Author
Pom 
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>
GUICreate "Dragonica Bot"535200)
GUICTRLCreateLabel "Talk 1"810)
$key1 GUICtrlCreateInput ""408130)
GUICTRLCreateLabel "Talk 2"840)
$key2 GUICtrlCreateInput ""4038130)
GUICTRLCreateLabel "Talk 3"870)
$key3 GUICtrlCreateInput ""4068130)
GUICTRLCreateLabel "Interval" 30100)
$Interval GUICtrlCreateInput "10000"789850)
$startbutton GUICtrlCreateButton("Start Bot"75128100)

GUISetState(@SW_SHOW)

While 
1
    $msg 
GUIGetMsg()
    
Select
        
    
Case $msg $startbutton
                        $send1 
GUICtrlRead($key1)
                        
$sleep1 GUICtrlRead($Interval)
                        
$send2 GUICtrlRead($key2)
                        
$sleep1 GUICtrlRead($Interval)
                        
$send3 GUICtrlRead($key3)
                        
$sleep1 GUICtrlRead($Interval)
                While 
1     
                        ControlSend
("Dragonica (Client Ver : 1.0.12)""""""{ENTER}")
                        
Sleep("100")
                        
ControlSend("Dragonica (Client Ver : 1.0.12)""""""test"
                        
Sleep("100")
                        
ControlSend("Dragonica (Client Ver : 1.0.12)""""""{ENTER}")
                
WEnd

        
Case $msg $GUI_EVENT_CLOSE
                GUIDelete
()
                
ExitLoop

    EndSelect

WEnd 
You still haven't read anything so I am not going to give you the correct code to fix it. You just copied ken_devil's code from page 2 and put your name on it, which is unacceptable. Each variable can only be assigned once. You have $sleep1 reading the input of $interval three times. Also you didn't do anything with those variables afterwords. You have to plug them into the code. Example:
PHP Code:
Sleep($variable
You have to do that to the Sleep and ControlSend functions.


Also try to use [code] tags and the edit button instead of triple posting.
TheForsaken is offline  
Reply

Tags
autoit, bot, cheat, macro, program


Similar Threads Similar Threads
[Guide]how to make pet sql
07/10/2010 - EO PServer Guides & Releases - 15 Replies
sample SQL, the id i used are sample id and might be already in use in your server delete from cq_action where id >= 727440 and id <= 728445; insert into cq_action (id,id_next,id_nextfail,type,data,param) values (728440,728441,728444,508,0,'1 0 52'), (728441,728442,0,502,(Egg ID),''), (728442,728443,0,501,(Bag ID),''), (728443,728445,0,1085,0,'gmlog/action_log 380,%user_name,0,0,(Bag ID),0,0,(Egg ID),0,0'),
Can someone make a guide on how to make...
02/13/2010 - EO PServer Hosting - 6 Replies
Can someone make a guide on how to make equipment can be upgrade by using violet stone(item level 125 can be upgrade up to 255) i have try searching it but nothing found.. please someone make a guide about it:handsdown:
(Guide- request)Can any1 make guide for Wizzard/bard from lv 1 to 100
04/30/2009 - Silkroad Online - 0 Replies
hello...can any1 make a guide for wizard/bard from lv 1 to 100 area to exp (bot :P) gap, farm and best skills? Ty
[Guide] Pearl Guide To make +12
02/22/2009 - PW Hacks, Bots, Cheats, Exploits - 0 Replies
This guide is mostly for private servers where you can buy 1star draco pearls and 5star draco pearls, i had this .txt file saved for like a year already and it's VERY VERY usefull, so basically instead of buying mass pearls and mixing, this is an accurate way to get a +1, +2, +3.. and all the way to +12 pearl. Then here exactly correct 1260, Grade - 1 Draco Pearls * buy * at 4000 price = 5 040 000 gold 252, Grade - 2 Draco Pearls 111, Grade - 3 Draco Pearls 29, Grade - 4 Draco...



All times are GMT +2. The time now is 01:58.


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.