help in login screen

Results 1 to 6 of 6
  1. #1
    SkullCrasher Neliel Tu is offline
    MemberRank
    Jul 2012 Join Date
    Japan, TokyoLocation
    1,240Posts

    help in login screen

    i build my own gunz and i meet strange error login working but i can't write or touch the username or password boxes the client and server both build on KOR and i wont change it
    changes are:
    mef removed
    serial disabled


  2. #2
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: help in login screen

    Do a test, add a default user/pass in the source (forgot which file, easy to find, just search "username"/"password", something like that). If with text already there you're able to type, then something's wrong with the widget and you should change it out with a default interface file.

  3. #3
    SkullCrasher Neliel Tu is offline
    MemberRank
    Jul 2012 Join Date
    Japan, TokyoLocation
    1,240Posts

    Re: help in login screen

    can you tell me where to check?

  4. #4
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: help in login screen

    in zgameinterface::initinterface(), search for :

    #ifdef _FASTDEBUG
    m_IDLResource.FindWidget("LoginPassword")->SetText("1111");
    // m_IDLResource.FindWidget("LoginPassword")->SetText("2708");
    #endif
    remove the ifdef and endif, and try replacing with this:
    m_IDLResource.FindWidget("LoginID")->SetText("test");
    m_IDLResource.FindWidget("LoginPassword")->SetText("1234");

    if that doesn't work, go to zgameinterface::onlogincreate(), and uncomment this:
    m_IDLResource.FindWidget("LoginID")->SetText("dubble");
    m_IDLResource.FindWidget("LoginPassword")->SetText("1111");
    if one of those 2 works and allows you to type, then you have a interface issue and should get the vanilla ijji one.

  5. #5
    SkullCrasher Neliel Tu is offline
    MemberRank
    Jul 2012 Join Date
    Japan, TokyoLocation
    1,240Posts

    Re: help in login screen

    Quote Originally Posted by jetman82 View Post
    in zgameinterface::initinterface(), search for :

    #ifdef _FASTDEBUG
    m_IDLResource.FindWidget("LoginPassword")->SetText("1111");
    // m_IDLResource.FindWidget("LoginPassword")->SetText("2708");
    #endif
    remove the ifdef and endif, and try replacing with this:
    m_IDLResource.FindWidget("LoginID")->SetText("test");
    m_IDLResource.FindWidget("LoginPassword")->SetText("1234");

    if that doesn't work, go to zgameinterface::onlogincreate(), and uncomment this:
    m_IDLResource.FindWidget("LoginID")->SetText("dubble");
    m_IDLResource.FindWidget("LoginPassword")->SetText("1111");
    if one of those 2 works and allows you to type, then you have a interface issue and should get the vanilla ijji one.
    still

  6. #6
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: help in login screen

    Strange, try replacing default.mrs with the original.



Advertisement