Character Login Screen Bug

Results 1 to 23 of 23
  1. #1
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    ! Character Login Screen Bug

    So I am putting my login.mrs as server select

    I edited the Zgameinterface.cpp,ZInterfaceBackground.cpp and ZInterfaceBackground.h
    and it worked it fine, What my problem is that, Its not moving when you first start the client its just sitting there.









    For example, The original Gunz login screen the train, when you first enter the server the screen camera goes down to the character.

    Is this a source issue regarding Zgameinterface.cpp,ZInterfaceBackground.cpp and ZInterfaceBackground.h
    or the login.mrs or is it a camera problem within the source or MRS.

    I am really leaning on its a source problem, I have never encounter a problem like this before.

    How do i fix this issue?

    UPDATE
    gameinterface.cpp,ZInterfaceBackground.cpp and ZInterfaceBackground.h have been replaced and edit with the same code and even edit like its suppose to from this post http://forum.ragezone.com/f245/impro...screen-891370/. Like I said its not just this login.mrs . its ever one that I put in. Is there other place in source that deals with backgrounds and the login.mrs? I am trying the new Icegunz server stuff and i have to say i fixed some issues with it, but this part its kicking my ass.

    Last edited by WickedsInferno; 24-01-15 at 08:48 PM.


  2. #2
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Problem

    /Bump ,

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

    Re: Character Login Screen Problem

    When you first start the client it's not supposed to move, it's designed that way, do you mean it doesn't move after logging in? big difference between the 2.

  4. #4
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Problem

    Im sorry. when you login in that is my problem x.x i have never had this problem before.

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

    Re: Character Login Screen Problem

    If it doesn't move, even with the stock ijji login.mrs, then it's definitely a source issue.

  6. #6
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Problem

    Quote Originally Posted by jetman82 View Post
    If it doesn't move, even with the stock ijji login.mrs, then it's definitely a source issue.
    I got other client and source, That one worked fine. I just dont know why this one will not work, I knew it was source issue. I just have no idea how to fix it . Or what part to fix x.x

    I rather use the source i am currently working on because it has tons of stuff on it.

  7. #7
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Problem

    Update ! I posted a video of what my problem is!

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

    Re: Character Login Screen Problem

    The code has been modified in order for this login screen to work the way wucas wanted it to work. Follow this thread and you'll be able to fix it. If you have any problems let me know.

    http://forum.ragezone.com/f245/dark-...-1-7-a-932039/

  9. #9
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Problem

    I really don't think you understood my video xD. watch it again. its not just this login that is doing it. Its multiple maps

    - - - Updated - - -

    Plus its not looping or anything.

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

    Re: Character Login Screen Problem

    In that case, check zinterfacebackground.cpp, make sure you didn't accidentally delete the camposition codes or place them in the wrong location.
    if( stricmp( pDummy->szName.c_str(), "camera_pos 01" ) == 0 )
    {
    m_vCamPosSt = pDummy->Position;
    m_vCamDirSt = pDummy->Direction;
    }
    else if( stricmp( pDummy->szName.c_str(), "camera_pos 02" ) == 0 )
    {
    m_vCamPosEd = pDummy->Position;
    m_vCamDirEd = pDummy->Direction;
    }
    else if( stricmp( pDummy->szName.c_str(), "spawn_solo_101" ) == 0 )
    {
    m_vCharPos = pDummy->Position;
    m_vCharDir = pDummy->Direction;
    }
    That should be in the forloop RDummyList::iterator

  11. #11
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Problem



    Here is where it is. i have even try to switch it from a different source, but does the same thing.

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

    Re: Character Login Screen Problem

    Well that is definitely strange then... I'm not entirely sure what the issue is. Did you add the extra code that was necessary for the map login to function? It was like, LOGIN_SCENE_MAIN or something along those lines. See if you have that in the source.

  13. #13
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Problem

    I redid, the whole code. It works, but no likes it's suppose to. I have try different maps and none of them transition to the character , if you use the repack clean and edit that you can get by jurin how ever you say it, it works fine. But for mine I have no idea. I try to replace the cpp and h, within mine and it still does not work.
    Last edited by WickedsInferno; 24-01-15 at 10:36 AM.

  14. #14
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Bug

    Zgameinterface.cpp,ZInterfaceBackground.cpp and ZInterfaceBackground.h have been replaced and edit with the same code and even edit like its suppose to from this post http://forum.ragezone.com/f245/impro...screen-891370/. Like I said its not just this login.mrs . its ever one that I put in. Is there other place in source that deals with backgrounds and the login.mrs? I am trying the new Icegunz server stuff and i have to say i fixed some issues with it, but this part its kicking my ass.

  15. #15
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Bug

    I guess I'm gong to bump this again, any help would be awesome

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

    Re: Character Login Screen Bug

    I'll have to do a call hierarchy on it and see if I can find all the calls to and from. I'll letcha know what I find.

  17. #17
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Bug

    Awesome Jet, even my developers can't figure this out. but like i said any help would be awesome!

  18. #18
    Valued Member Noxious RL is offline
    MemberRank
    Mar 2011 Join Date
    NetherlandsLocation
    133Posts

    Re: Character Login Screen Bug

    I already solved this problem with some Camera positioning changes, if you want it you can contact me on skype and ill re-download my old client with the Fixed login.mrs Skype : = RZ name

    Kind Regards.

  19. #19
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Bug

    Quote Originally Posted by hugofunky View Post
    I already solved this problem with some Camera positioning changes, if you want it you can contact me on skype and ill re-download my old client with the Fixed login.mrs Skype : = RZ name

    Kind Regards.
    Lol you really don't understand the problem. its not ONLY this login map. its every other login map too.

  20. #20
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Bug

    I fixed the problem ! after hours and hours of editing and coding i did it ! please close this.

  21. #21
    Valued Member Noxious RL is offline
    MemberRank
    Mar 2011 Join Date
    NetherlandsLocation
    133Posts

    Re: Character Login Screen Bug

    Quote Originally Posted by Lord Of Asylum View Post
    Lol you really don't understand the problem. its not ONLY this login map. its every other login map too.
    Oh my bad, didnt read everything anyways.
    What was your solution? so others wont have this problem also.

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

    Re: Character Login Screen Bug

    Quote Originally Posted by Lord Of Asylum View Post
    I fixed the problem ! after hours and hours of editing and coding i did it ! please close this.
    Awesome, glad to hear it. Sorry I didn't get around to checking the source for you, school has me pretty busy.

  23. #23
    Asylum Gamers WickedsInferno is offline
    MemberRank
    Jun 2011 Join Date
    Deep In AsylumLocation
    394Posts

    Re: Character Login Screen Bug

    Quote Originally Posted by hugofunky View Post
    Oh my bad, didnt read everything anyways.
    What was your solution? so others wont have this problem also.
    I'm not very good at writing tuts, but I might release the exe file .
    Quote Originally Posted by jetman82 View Post
    Awesome, glad to hear it. Sorry I didn't get around to checking the source for you, school has me pretty busy.
    Yeah man don't worry about it. But I did appreciate the fact you where trying to help me, so thank you



Advertisement