|
You last visited: Today at 06:27
Advertisement
TUT - Create a simple login 'BOT' + Add features to it in VB + Source!
Discussion on TUT - Create a simple login 'BOT' + Add features to it in VB + Source! within the DarkOrbit forum part of the Browsergames category.
03/20/2013, 21:30
|
#16
|
elite*gold: 11
Join Date: Aug 2012
Posts: 1,040
Received Thanks: 162
|
Quote:
Originally Posted by 123456789thread
i can post the code in C++/C#  for those who don't learn VB.Net 
|
If you want to 
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
|
|
|
03/20/2013, 21:40
|
#17
|
elite*gold: 0
Join Date: Sep 2012
Posts: 202
Received Thanks: 100
|
hard work for create
|
|
|
03/20/2013, 21:43
|
#18
|
elite*gold: 33
Join Date: Feb 2012
Posts: 590
Received Thanks: 148
|
thomorrow i can post the code and help you
BTW tech bot is more difficult
|
|
|
03/20/2013, 22:38
|
#19
|
elite*gold: 0
Join Date: Jan 2012
Posts: 1,997
Received Thanks: 3,422
|
If we release the httpwebrequest loginer
All "noob" (sorry for the therm) create her tool, you want this ?
|
|
|
03/20/2013, 23:14
|
#20
|
elite*gold: 0
Join Date: Dec 2012
Posts: 409
Received Thanks: 200
|
@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
|
#21
|
elite*gold: 0
Join Date: Jul 2011
Posts: 102
Received Thanks: 23
|
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
|
|
|
03/21/2013, 07:31
|
#22
|
elite*gold: 1
Join Date: Oct 2012
Posts: 840
Received Thanks: 339
|
Quote:
Originally Posted by sword_gold
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 
|
You need to place it in the webbrowser, you can also watch my source in the attatchments for it
|
|
|
03/21/2013, 10:22
|
#23
|
elite*gold: 0
Join Date: Dec 2011
Posts: 18
Received Thanks: 2
|
server ?
|
|
|
03/21/2013, 13:34
|
#24
|
elite*gold: 33
Join Date: Feb 2012
Posts: 590
Received Thanks: 148
|
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
|
#25
|
elite*gold: 0
Join Date: Jul 2011
Posts: 102
Received Thanks: 23
|
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
|
#26
|
elite*gold: 2
Join Date: Aug 2012
Posts: 1,031
Received Thanks: 1,109
|
luckily i made my own DarkOrbit_API.dll which contains item upgrader , upgrade items getting, equipment reader , equipment setter etc.
|
|
|
03/22/2013, 07:08
|
#27
|
elite*gold: 30
Join Date: Jan 2013
Posts: 212
Received Thanks: 463
|
Quote:
Originally Posted by MagierDesGrauens
luckily i made my own DarkOrbit_API.dll which contains item upgrader , upgrade items getting, equipment reader , equipment setter etc. 
|
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
Someone want me to release it with open source?
|
|
|
03/23/2013, 14:05
|
#28
|
elite*gold: 5
Join Date: Sep 2009
Posts: 157
Received Thanks: 47
|
Nope... please don't do it... We will have here 1 million upgrader
|
|
|
03/23/2013, 22:31
|
#29
|
elite*gold: 0
Join Date: Aug 2012
Posts: 190
Received Thanks: 200
|
Quote:
Originally Posted by GnomeProgramming
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
Someone want me to release it with open source? 
|
Noobish. What is hard in stupid using webrequest class or sockets.
|
|
|
03/24/2013, 01:20
|
#30
|
elite*gold: 0
Join Date: Jan 2010
Posts: 19
Received Thanks: 2
|
U will do a tutorial how to do in vb a tech bot?
|
|
|
 |
|
Similar Threads
|
[Release] a new website with simple features
05/13/2018 - SRO PServer Guides & Releases - 115 Replies
Hello,
i'll release a new website for sro.
screenshot
http://i.epvpimg.com/oXXWb.jpg
website pages
Home , Download , Donate ( prices only ) , Server Team , Server Information
website features
Login - Register - Change pw - Ranking ( job ) - Server Status - the amount of online players - official server time ( its for cairo time , you can edit it easily to ur country time
website Features for server owners
add silk ( u can add silk to any user at database , you just need the username ,...
|
How to create a Cabal Bot (simple)
10/22/2012 - Cabal Guides & Templates - 23 Replies
There are a few tutorials out there showing this method on creating a cabalbot but I decided to write this and share anyways. I created my own method as I tried to make it as clear, logical and easy to understand as possible.
To view post simply go here: The Raves of an IT Madman: How to Create a Cabal Bot
or shortlink: goo.gl/I5opJ
|
HOW TO CREATE SIMPLE MENU HACK.. HELP
10/15/2012 - Soldier Front Hacks, Bots, Cheats & Exploits - 2 Replies
HOW TO CREATE SIMPLE MENU HACK.. HELP
HELP ME HOW TO CREATE SIMPLE MENU HACK.. PLEASE...
LIKE
PLAYER CHAMS
CROSSHAIR
FULL BRIGHT
LIKE THAT.. PLEASE ... :handsdown::handsdown::handsdown:
|
[VB] PHP Simple Login Source
06/20/2011 - Coding Releases - 2 Replies
Was ihr dazu braucht :
Visual Basic
WebServer (FTP zum hochladen)
http://anime-stream.eu/log1n.JPG
VB Source Download (mit PHP Files) :
MEGAUPLOAD - The leading online storage and file delivery service
|
Is it possible to create a simple silkroad bot using java?
03/26/2009 - Silkroad Online - 2 Replies
anyone ?
|
All times are GMT +1. The time now is 06:30.
|
|