[HELP] TPS/FPS Switching

Results 1 to 3 of 3
  1. #1
    Account Upgraded | Title Enabled! djbadboys38 is offline
    MemberRank
    Aug 2010 Join Date
    TanzanyaLocation
    1,388Posts

    [HELP] TPS/FPS Switching

    fixed thank you ^^
    Last edited by djbadboys38; 01-05-14 at 01:55 PM.


  2. #2
    Member steventhedon187 is offline
    MemberRank
    Jul 2013 Join Date
    -> Your RAM <-Location
    59Posts

    Re: [HELP] TPS/FPS Switching

    in WarZ.sln

    HUD_TPSGame.cpp

    Search for:

    PHP Code:
    if(pl->m_isFinishedAiming && !pl->m_isInScope)
    {
    if(Keyboard->WasPressed(kbsLeftShift))
    {
    R3D_SWAP(g_CameraLeftSideSource, g_CameraLeftSideTarget);
    g_CameraLeftSideLerp = 0.0f;
    }
    }

    change to:


    PHP Code:
    //if(pl->m_isFinishedAiming && !pl->m_isInScope)
    //{
    if(Keyboard->WasPressed(kbsLeftAlt)) //Here you put the key you want
    {
    R3D_SWAP(g_CameraLeftSideSource, g_CameraLeftSideTarget);
    g_CameraLeftSideLerp = 0.0f;
    }
    //}





    hope this gonna help you to get it work

  3. #3
    Account Upgraded | Title Enabled! djbadboys38 is offline
    MemberRank
    Aug 2010 Join Date
    TanzanyaLocation
    1,388Posts

    Re: [HELP] TPS/FPS Switching

    Quote Originally Posted by steventhedon187 View Post
    in WarZ.sln

    HUD_TPSGame.cpp

    Search for:

    PHP Code:
    if(pl->m_isFinishedAiming && !pl->m_isInScope)
    {
    if(Keyboard->WasPressed(kbsLeftShift))
    {
    R3D_SWAP(g_CameraLeftSideSource, g_CameraLeftSideTarget);
    g_CameraLeftSideLerp = 0.0f;
    }
    }

    change to:


    PHP Code:
    //if(pl->m_isFinishedAiming && !pl->m_isInScope)
    //{
    if(Keyboard->WasPressed(kbsLeftAlt)) //Here you put the key you want
    {
    R3D_SWAP(g_CameraLeftSideSource, g_CameraLeftSideTarget);
    g_CameraLeftSideLerp = 0.0f;
    }
    //}





    hope this gonna help you to get it work
    Thank you for reply but my problem not this. My problem changing camera with C button, i want to change camera FPS to TPS quickly



Advertisement