A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

[TuT] Making a Account creator.[TuT]

2.5k views · started by Hater ·
#1
[TuT] Making a Account creator.[TuT]
How hard is this?: 1-10 1 2 |3| 4 5 6 7 8 9 10

What you will need for the layout:
- 2 Buttons. - Name them Button1-Add Info/Whatever. Button2-Close.
- 4 Textboxes
- 1 Web browser

Instructions:

1. Nexon Passport Sign-Up
Add this to you web browsers URL or use your own.


2. Right click on the page and click view page source code.

3. Look for the txtAccountID/Whatever it is on your site.

4.Find all of the IDs/Whatever it is on your site, for Nexon it is:
txtAccountID

txtPassword

txtPasswordConfirmation

txtEmail

txtEmailConfirmation

txtFirstName

rbGenderMale - This is for the gender.

chkTermofuse

chkTermofuse - This is for the agreement of the site.

ddlBirthDay - Day of birth.

ddlBirthYear - Year of birth.

ddlBirthMonth - Month of birth.

5.Code it. " Button 1"
Codes:
WebBrowser1.Document.GetElementById("txtAccountID").SetAttribute("value", TextBox1.Text)


WebBrowser1.Document.GetElementById("txtPassword").SetAttribute("value", TextBox2.Text)

WebBrowser1.Document.GetElementById("txtPasswordConfirmation").SetAttribute("value", TextBox2.Text)


WebBrowser1.Document.GetElementById("txtEmail").SetAttribute("value", TextBox3.Text)

WebBrowser1.Document.GetElementById("txtEmailConfirmation").SetAttribute("value", TextBox3.Text)

WebBrowser1.Document.GetElementById("txtFirstName").SetAttribute("value", TextBox5.Text)

WebBrowser1.Document.GetElementById("rbGenderMale").InvokeMember("Click")

WebBrowser1.Document.GetElementById("chkTermofuse").InvokeMember("Click")

WebBrowser1.Document.GetElementById("ddlBirthDay").SetAttribute("value", "4")

WebBrowser1.Document.GetElementById("ddlBirthYear").SetAttribute("value", "1975")

WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "4")


"Button 2"
Code:
Me.close


Thank me if i helped.

+Rep if you care.
#3
Alright, if it's a check box, how do I code that?
#4
Thanks for this guide, is it possible to make like a "AiO" Account Creator?
Like, you point it to the site n it will try to make an account.
#5
Michael wrote:
Alright, if it's a check box, how do I code that?


What do u want to code... abt a checkbox..?
checkbox1.check=true Thats a common function used for check boxes

zzGoWR wrote:
Thanks for this guide, is it possible to make like a "AiO" Account Creator?
Like, you point it to the site n it will try to make an account.

That would be very tough ...
Though is some1 cr8ed that would be really awesome...
#6
This could be very useful.
#7
iShellz wrote:
This could be very useful.


I hope it can help you. :)
Thanks for the Thanks! ;)
#8
You need to learn how to use HTTP Wrappers. They are way faster than Web Browser.
#9
Thanks man.. Really Cool.. :D +Rep
#10
Is this for gaiaonline accounts? or something else?
#11
Great tut, but can you make it add 1 on to the end of the textbox for username? As in:

First user made: Flareboy323
Second: Flareboy324
Third: Flareboy325


Etc, etc. Is that possible?
#12
There is an error it opens the webbrowser one time