Jump to content

Recommended Posts

Posted

Well, For some reason, Its not working atall now, Last time, it filled out half of the textbox;s, now its filling out nothing. And, I replaced it with your code, still nothing ><

# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Posted (edited)

#include <IE.au3>

$username = "Test"

$password = "Test"

$email = "Test"

$month = "1"

$day = "1"

$year = "2006"

$oIE = _IECreate("http://www.gaiaonline.com/profile/character.php?mode=register",0,1,0)

Sleep(3000)

$oForm = _IEFormGetObjByName ($oIE, 1)

$oUsername = _IEFormElementGetObjByName ($oForm, "username")

$oPassword = _IEFormElementGetObjByName ($oForm, "new_password")

$oPasswordConfirm = _IEFormElementGetObjByName ($oForm, "confirm_password")

$oEmail = _IEFormElementGetObjByName ($oForm, "email")

$oEmailConfirm = _IEFormElementGetObjByName ($oForm, "confirm_email")

$oMonth = _IEFormElementGetObjByName ($oForm, "month")

$oDay = _IEFormElementGetObjByName ($oForm, "day")

$oYear = _IEFormElementGetObjByName ($oForm, "year")

$oAgree = _IEFormElementGetObjByName ($oForm, "agreed")

_IEFormElementSetValue ($oUsername, $username)

_IEFormElementSetValue ($oPassword, $password)

_IEFormElementSetValue ($oPasswordConfirm, $password)

_IEFormElementSetValue ($oEmail, $email)

_IEFormElementSetValue ($oEmailConfirm, $email)

_IEFormElementSetValue ($oMonth, $month)

_IEFormElementSetValue ($oDay, $day)

_IEFormElementSetValue ($oYear, $year)

_IEFormElementCheckBoxSelect ($oAgree, "yes")

Edited by banban

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...