Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[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();
 

Attachments

You must be registered for see attachments list
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