• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Tutorial] F8 look at the name

Newbie Spellweaver
Joined
Nov 6, 2023
Messages
19
Reaction score
12
Preview:

412953566_1014532682968051_345768383005298748_n - [Tutorial] F8 look at the name - RaGEZONE Forums


Tutorial:

C++:
bool allow_observer_mode = false;
    if(Keyboard->WasPressed(kbsF8) && gUserProfile.ProfileData.isDevAccount)
    {
        d_observer_mode->SetBool(!d_observer_mode->GetBool());
        if(d_observer_mode->GetBool())
        {
            FPS_vViewOrig.Assign(pl->ViewAngle);
        }
    }

    if(d_video_spectator_mode->GetBool() || d_observer_mode->GetBool())
    {
        FPS_Acceleration.Assign(0, 0, 0);

        float  glb_MouseSensAdj = g_mouse_sensitivity->GetFloat();
 
Newbie Spellweaver
Joined
Jan 9, 2016
Messages
49
Reaction score
2
Preview:

View attachment 254917

Tutorial:

C++:
bool allow_observer_mode = false;
    if(Keyboard->WasPressed(kbsF8) && gUserProfile.ProfileData.isDevAccount)
    {
        d_observer_mode->SetBool(!d_observer_mode->GetBool());
        if(d_observer_mode->GetBool())
        {
            FPS_vViewOrig.Assign(pl->ViewAngle);
        }
    }

    if(d_video_spectator_mode->GetBool() || d_observer_mode->GetBool())
    {
        FPS_Acceleration.Assign(0, 0, 0);

        float  glb_MouseSensAdj = g_mouse_sensitivity->GetFloat();
Thank you
 
Back
Top