Remember password (checkbox not needed)

Results 1 to 14 of 14
  1. #1
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Remember password (checkbox not needed)

    This is how i done it if someone want it lol (it's saving the password in regedit and also checkbox not needed):

    Under:
    MWidget* pWidget = m_IDLResource.FindWidget("LoginID");
    Add:
    MWidget* pWidget2 = m_IDLResource.FindWidget("LoginPassword");
    Now under this ^
    You will see:
    if(pWidget)
    Replace all the if with:
    if(pWidget)
    {
    char buffer[256];
    char buffer2[256];
    if (ZGetApplication()->GetSystemValue("LoginID", buffer) && ZGetApplication()->GetSystemValue("LoginPassword", buffer2 ) )
    pWidget->SetText(buffer);
    pWidget2->SetText(buffer2);
    }
    Go to:
    void ZGameInterface::OnLoginDestroy(void)
    Replace all the void with this one:
    void ZGameInterface::OnLoginDestroy(void)
    {
    ShowWidget("Login", false);
    MWidget* pWidget = m_IDLResource.FindWidget("LoginID");
    MWidget* pWidget2 = m_IDLResource.FindWidget("LoginPassword");
    if(pWidget)
    {
    ZGetApplication()->SetSystemValue("LoginID", pWidget->GetText());
    ZGetApplication()->SetSystemValue("LoginPassword", pWidget2->GetText());

    if ( m_pBackground)
    m_pBackground->SetScene(LOGIN_SCENE_FALLDOWN);
    }
    Have fun guys :P


  2. #2
    Freelance GunZ Developer Touchwise is offline
    MemberRank
    Aug 2009 Join Date
    The NetherlandsLocation
    754Posts

    Re: Remember password (checkbox not needed)

    It's getting better ;) Now put a MD5 hash in it!

  3. #3
    Member SkipChopJD is offline
    MemberRank
    May 2013 Join Date
    70Posts

    Re: Remember password (checkbox not needed)

    good post friends

    Would you give me one box
    It looks better

  4. #4
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Re: Remember password (checkbox not needed)

    Quote Originally Posted by SkipChopJD View Post
    good post friends

    Would you give me one box
    It looks better
    http://forum.ragezone.com/f245/remem...ssword-948430/

  5. #5
    Freelance GunZ Developer Touchwise is offline
    MemberRank
    Aug 2009 Join Date
    The NetherlandsLocation
    754Posts

    Re: Remember password (checkbox not needed)


    Sigh people should learn to look further then their nose

    sahar what was your skype?

  6. #6
    Valued Member polat alemdar is offline
    MemberRank
    Jun 2011 Join Date
    106Posts

    Re: Remember password (checkbox not needed)

    How to add checkbox :(

  7. #7
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Re: Remember password (checkbox not needed)

    Quote Originally Posted by Touchwise View Post
    Sigh people should learn to look further then their nose

    sahar what was your skype?
    sahar042

  8. #8
    Member SkipChopJD is offline
    MemberRank
    May 2013 Join Date
    70Posts

    Re: Remember password (checkbox not needed)

    sahar042
    Sorry but that is not just remember the password box

  9. #9
    Freelance GunZ Developer Touchwise is offline
    MemberRank
    Aug 2009 Join Date
    The NetherlandsLocation
    754Posts

    Re: Remember password (checkbox not needed)

    Quote Originally Posted by SkipChopJD View Post
    sahar042
    Sorry but that is not just remember the password box
    Stop talking trash and talk with arguements etc

  10. #10
    Enthusiast ghPer is offline
    MemberRank
    Jul 2013 Join Date
    32Posts

    Re: Remember password (checkbox not needed)

    I'm already released this.

  11. #11
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Re: Remember password (checkbox not needed)

    Quote Originally Posted by ghPer View Post
    I'm already released this.
    Released what? Look at my code and look at yours.
    And this one that i released you don't need to add a checkbox there is peoples that don't know how to add a checkbox or to fix it and you just released a code that working with checkbox and nothing else.

  12. #12
    Praise the Sun! Solaire is offline
    MemberRank
    Dec 2007 Join Date
    Undead BurgLocation
    2,862Posts

    Re: Remember password (checkbox not needed)

    Quote Originally Posted by Touchwise View Post
    It's getting better ;) Now put a MD5 hash in it!
    One-way encryption? That's not going to work unless you modify the MatchServer.

  13. #13
    Enthusiast ghPer is offline
    MemberRank
    Jul 2013 Join Date
    32Posts

    Re: Remember password (checkbox not needed)

    Quote Originally Posted by sahar042 View Post
    Released what? Look at my code and look at yours.
    And this one that i released you don't need to add a checkbox there is peoples that don't know how to add a checkbox or to fix it and you just released a code that working with checkbox and nothing else.
    My code does not need checkbox.
    and as I said it needs a checkbox...

  14. #14
    Member Chrissy is offline
    MemberRank
    Jul 2013 Join Date
    59Posts

    Re: Remember password (checkbox not needed)

    Quote Originally Posted by ghPer View Post
    My code does not need checkbox. and as I said it needs a checkbox...
    Pretty sure your code does need a checkbox.



Advertisement