Thread: Need Source

Results 1 to 12 of 12
  1. #1
    ☆TIS☆'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    26

    Need Source

    Could anyone/someone get me the mpgh login button source?

    im making a login system using GetElementById i've looked thru the mpgh page souce but cannot find it!! could someone get it for me so i can finish it

  2. #2
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    This is the complete tag of what happens on clicking the Login button. Extract what you need from it:

    Code:
    <form action="https://www.mpgh.net/forum/login.php?do=login" method="post" onSubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
    I think you are looking for:

    Code:
    https://www.mpgh.net/forum/login.php?do=login
    Because this will actually submit the form.

    But anyways, I've copied it all, so extract according to your needs.

  3. The Following User Says Thank You to Hassan For This Useful Post:

    ☆TIS☆ (05-29-2010)

  4. #3
    ☆TIS☆'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    26
    Ok now i have that, is there a way i can make it check if the user is registered?

  5. #4
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by ☆TIS☆ View Post
    Ok now i have that, is there a way i can make it check if the user is registered?
    Edit:

    Hmm...I am not good at this stuff, but I found that the Login button and search members button is using no IDs / are hidden. So I think I won't be able to help you. Blubb is good at this stuff, maybe he can help you.


    https://www.mpgh.net/forum/login.php?do=login

    This won't work. We need to Invoke the Submit/Login button using the ID. But I can't find the ID, even with Google Chrome !!!
    Last edited by Hassan; 05-30-2010 at 12:07 AM.

  6. #5
    ☆TIS☆'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    26
    Ok Thanks mate
    //edit. also the above code for the login button doesnt work.. i tried all sorts of ways and still didnt work!! do u think u could help me on team viewer?

  7. #6
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by ☆TIS☆ View Post
    Ok Thanks mate
    //edit. also the above code for the login button doesnt work.. i tried all sorts of ways and still didnt work!! do u think u could help me on team viewer?
    See my post above. ^^^^^^^^^^^^^^^^^^^^

  8. #7
    ☆TIS☆'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    26
    yes i tried Google Chrome myself and didnt find anything..i tried a numrous of things ill ask blubb or NextGen

    i done there sorts

    Webbrowser1.Document.GetElementById("https://www.mpgh.net/forum/login.php?do=login").InvokeMembers("click")

    webbrowser1.Documents.GetElementById("submit").Set Attributes("value", 1)
    and so on
    Last edited by ☆TIS☆; 05-30-2010 at 01:08 AM.

  9. #8
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by ☆TIS☆ View Post
    yes i tried Google Chrome myself and didnt find anything..i tried a numrous of things ill ask blubb or NextGen

    i done there sorts

    Webbrowser1.Document.GetElementById("https://www.mpgh.net/forum/login.php?do=login").InvokeMembers("click")

    webbrowser1.Documents.GetElementById("submit").Set Attributes("value", 1)
    and so on
    Values cannot be set on Buttons. They can be set on checkboxes / textboxes /etc... Buttons are alwayz invoked. And ya I hope they can help you. Best of luck !!

  10. #9
    ☆TIS☆'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    26
    i need another question answered plz?

    with the login part for the Account Gen, i have started to make a MPGH register form,
    how do i make the CheckBox + Register button click after checkbox is checked??

    on the MPGH - MultiPlayer Game Hacking - Hack Hacks Downloads, Combat Arms Hacks, CrossFire Hacks, WarRock Hacks, Soldier Front Hacks, Sudden Attack Hacks, Operation 7 Hacks, AVA Hacks, Battlefield Hacks, Bad Company 2 Hacks, Call of Duty Hacks, Modern Warf

  11. #10
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by ☆TIS☆ View Post
    i need another question answered plz?

    with the login part for the Account Gen, i have started to make a MPGH register form,
    how do i make the CheckBox + Register button click after checkbox is checked??

    on the MPGH - MultiPlayer Game Hacking - Hack Hacks Downloads, Combat Arms Hacks, CrossFire Hacks, WarRock Hacks, Soldier Front Hacks, Sudden Attack Hacks, Operation 7 Hacks, AVA Hacks, Battlefield Hacks, Bad Company 2 Hacks, Call of Duty Hacks, Modern Warf
    Again, the register button is not providing any ID. However to check the checkbox, use this:

    Webbrowser1.Documents.GetElementById( "cb_rules_agree").SetAttributes( "value",1)

    One more thing, when filling the info use the webbrowser1_DocumentCompleted event, so you'll be able to get rid of "Object reference not set to an object." exception.

  12. The Following User Says Thank You to Hassan For This Useful Post:

    ☆TIS☆ (05-30-2010)

  13. #11
    ☆TIS☆'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    26
    Im New to the GetElementById i only learnt it today, thats why i wanna make register forms and stuff so i get used of it more

  14. #12
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Pm me if you need further help with that.



Similar Threads

  1. [Source Code] I Need Source Code For OPK In NoMenu
    By bossy in forum WarRock Hack Source Code
    Replies: 10
    Last Post: 12-09-2010, 11:57 AM
  2. i need source hack DEV c++
    By dan1raruto in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 0
    Last Post: 06-17-2010, 05:34 PM
  3. Need source code for chams hack
    By TheCamels8 in forum C++/C Programming
    Replies: 10
    Last Post: 06-14-2010, 05:49 PM
  4. Need source code for chams hack
    By TheCamels8 in forum WarRock Hack Source Code
    Replies: 5
    Last Post: 06-11-2010, 09:00 PM
  5. Need Source code
    By Red_Killer in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 02-20-2010, 07:35 AM