Coding Language: Visual Basic .NET
The code for the Login button is
Code:
WebBrowser1.Document.GetElementById("UserID"). SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("PassID"). SetAttribute("value", TextBox2.Text)
WebBrowser1.Document.Forms(0).InvokeMember("submit")
After it logs in you will have to link it to the Launcher.exe. So that means after that you put in
Code:
WebBrowser1.Navigate("http://hero.netgame.com/launch/hero")
To kill Launcher.exe you would use the following code
Code:
Dim pProcess() As Process = System.Diagnostics.Process.GetProcessesByName("Launcher")
For Each p As Process In pProcess
p.Kill()
Next
-Firebug
-Tamper Data
-Firefox (for the coding research, but the actual program use IE)
I don't know how to convert this into AutoIt coding because I don't code bots, but it'd be nice to pretty much put all these features in it as an option for a smoother botting program.
Note: If this is a thread not wanted, I will remove it upon 3 requests from people with 50posts+ that aren't spam.






