TUT - Create a simple login 'BOT' + Add features to it in VB + Source!

03/20/2013 21:30 daswoll56#16
Quote:
Originally Posted by 123456789thread View Post
i can post the code in C++/C# ;) for those who don't learn VB.Net :D
If you want to :D
Im looking for a long time, im stuck at the server select if i pass that i can figure some more things out for myself :p
03/20/2013 21:40 maximunkiller#17
hard work for create
03/20/2013 21:43 Technostar#18
thomorrow i can post the code and help you
BTW tech bot is more difficult
03/20/2013 22:38 NoCheatImPGM#19
If we release the httpwebrequest loginer
All "noob" (sorry for the therm) create her tool, you want this ?
03/20/2013 23:14 BiggestBAnge#20
@nocheat , why don't you want it to be opensource ? Yes every1 well make there own loginer and it's pretty fun if you dont know how to program :) , so care a little about us 'noobs' and let it be opensource
03/21/2013 03:24 sword_gold#21
I did not understand this step:
3-. For the following step, we're abou to create the bot itself... Double click your webbrowser and use this code...

where I place the code? in the button?

Great Tut man :D
03/21/2013 07:31 Joever11#22
Quote:
Originally Posted by sword_gold View Post
I did not understand this step:
3-. For the following step, we're abou to create the bot itself... Double click your webbrowser and use this code...

where I place the code? in the button?

Great Tut man :D
You need to place it in the webbrowser, you can also watch my source in the attatchments for it ;)
03/21/2013 10:22 bykuxd231#23
server ?
03/21/2013 13:34 Technostar#24
Code:
bool didWeNavigated = false;
        bool gottheserver = false;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            webBrowser1.Navigate("http://www.darkorbit.com");                                           //This will navigate to the darkorbit website and fill in all the information.
            didWeNavigated = true; 
        }

        private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            if ( didWeNavigated == false) {                                                                    //If we could not connect to darkorbit due no internet connection/darkorbit website is down, it will stop.
                Close();
            }
            else if(didWeNavigated == true) { 
                didWeNavigated = false;
            string username = textBox1.Text;                                                            //It will make it be able for the bot to fill in the username with the right values
            string password = textBox2.Text  ;                                                            //It will make it be able for the bot to fill in the password with the right values
            webBrowser1.Document.GetElementById("loginForm_default_username").SetAttribute("Value", username);   //This will search for the Username box, and paste the username information into that text field.
            webBrowser1.Document.GetElementById("loginForm_default_password").SetAttribute("Value", password);   //This will search for the Password box, and paste the password information into that text field.
            webBrowser1.Document.GetElementById("loginForm_default_loginButton").Focus();                        //This one will Focus (search) on the page for the login button...
            webBrowser1.Document.GetElementById("loginForm_default_loginButton").InvokeMember("click");          //This one will click the login button, when it has been found.
            HtmlElementCollection htmlel = webBrowser1.Document.GetElementsByTagName("input");
            HtmlElement el1;
            }
        }
this is the code of C#
and i can't do it in C++, cause its too laggy atm :( sry
03/21/2013 15:45 sword_gold#25
Thank you very much.

For now excellent.

But I have a question, where I add the server startup code?

I'm from America Global 1, the code is: "serverSelection_ini_69''

Where I put it, or which replaced it?, If they could put the code as I'm grateful to you would be to learn.

Many thanks again, I have loved the visual basic.
03/21/2013 22:08 MagierDesGrauens#26
luckily i made my own DarkOrbit_API.dll which contains item upgrader , upgrade items getting, equipment reader , equipment setter etc. :D
03/22/2013 07:08 GnomeProgramming#27
Quote:
Originally Posted by MagierDesGrauens View Post
luckily i made my own DarkOrbit_API.dll which contains item upgrader , upgrade items getting, equipment reader , equipment setter etc. :D
Me too, but I only make it with DO loging and also to get info from the account: Uridium, Credits, ID, SID etc... Ofc all with super fast http request :D

Someone want me to release it with open source? :rolleyes:
03/23/2013 14:05 Dorfman#28
Nope... please don't do it... We will have here 1 million upgrader :D :D
03/23/2013 22:31 TheMiszczu#29
Quote:
Originally Posted by GnomeProgramming View Post
Me too, but I only make it with DO loging and also to get info from the account: Uridium, Credits, ID, SID etc... Ofc all with super fast http request :D

Someone want me to release it with open source? :rolleyes:
Noobish. What is hard in stupid using webrequest class or sockets.
03/24/2013 01:20 Rubenone#30
U will do a tutorial how to do in vb a tech bot?