TAB - Playerlist crash

Results 1 to 5 of 5
  1. #1
    Member MRsrac is offline
    MemberRank
    Nov 2013 Join Date
    Da caveLocation
    82Posts

    TAB - Playerlist crash

    Hello,
    When I try to press TAB in game to see what players are on it just crash.
    Says it's wrong in HUD_TPSGame.cpp CGL.GetPlayer(i))
    I applied DNC update 1 and update 2 but it still crashes and there is not any other HUD_TPSGame.cpp in the other updates.

    Problem lays elsewhere?

    Code:
    if(hudMain && !hudMain->isChatInputActive())        {
                bool showPlayerList = InputMappingMngr->wasPressed(r3dInputMappingMngr::KS_SHOW_PLAYERS);
                if(showPlayerList)
                {
                    if (!hudMain->isPlayersListVisible())
                    {
                        hudMain->clearPlayersList();
                        int index = 0;
                        for(int i=0; i<R3D_ARRAYSIZE(CGL.playerNames); i++)
                        {
                            if(CGL.playerNames[i].Gamertag[0])
                            {
                                // DNC r3d_assert(CGL.GetPlayer(i));
                                hudMain->addPlayerToList(index++, CGL.playerNames[i].Gamertag, CGL.GetPlayer(i)->CurLoadout.Stats.Reputation, CGL.playerNames[i].isLegend, CGL.playerNames[i].isDev, false, false);
                            }
                        }
                        hudMain->showPlayersList(1);
                        r3dMouse::Show();
                    }
                    else
                    {
                        hudMain->showPlayersList(0);
                        r3dMouse::Hide();
                    }
                }
    
    
                if(hudMain->isPlayersListVisible() && Keyboard->WasPressed(kbsEsc))
                {
                        hudMain->showPlayersList(0);
                        r3dMouse::Hide();
                }
            }


  2. #2
    Member crysis55 is offline
    MemberRank
    Apr 2013 Join Date
    RussiaLocation
    80Posts

    Re: TAB - Playerlist crash

    Install all DNC updates(8)

  3. #3
    Member MRsrac is offline
    MemberRank
    Nov 2013 Join Date
    Da caveLocation
    82Posts

    Re: TAB - Playerlist crash

    I can't install ALL of the updates. In another thread I pinned problem with RSBuild when it ends up with an error if all of the updates are applied.

    And the other updates doesn't contain any other HUD_TPSGame.cpp...
    It's serversided then?

  4. #4
    Sorcerer Supreme Dragonbooss is offline
    Member +Rank
    May 2013 Join Date
    BrazilLocation
    267Posts

    Re: TAB - Playerlist crash

    "Tab, E, keys and chat crash:
    Edit the ip in your warz.sln and compile it in final. If your using a WarZ.exe from a different source this would also happen. Just use the correct WarZ.exe from the correct builds." Credits:

  5. #5
    Member MRsrac is offline
    MemberRank
    Nov 2013 Join Date
    Da caveLocation
    82Posts

    Re: TAB - Playerlist crash

    I don't have any IP wrong in WarZ.sln and I use DNC Source.
    TAB is not crashing anymore after all of the updates are installed, but I am not able to build with RSBuild.
    See this problem here.



Advertisement