Jump to content

486 posts in this topic

Recommended Posts

Posted
12 hours ago, Saitama said:

basicamente a falha pode causar apenas empate fov

I've already reported that the game freezes, but it doesn't believe it, and closes itself, before I thought it was when I made emojis but now this happens out of nowhere.
Posted
16 minutes ago, Uncover21 said:
I've already reported that the game freezes, but it doesn't believe it, and closes itself, before I thought it was when I made emojis but now this happens out of nowhere.

why i play yesterday 10 games in row and dont get anything of what u say?

17 minutes ago, Uncover21 said:
I've already reported that the game freezes, but it doesn't believe it, and closes itself, before I thought it was when I made emojis but now this happens out of nowhere.

why u have lags and i dont?

Posted

@SaitamaBro, for you, does Draw Aim Fov work? for you? It doesn't work for me, after this new deb it got really bad, not to mention the times it freezes and exits the game

On 11/02/2024 at 15:29, Saitama said:

1 vez tive um crash em 15 jogos

After this new deb, before there wasn't, there weren't any crahs
Posted

@Saitama I'm sure you didn't make any changes to the FOV, something else happened after this game update, because for me there are times when the FOV doesn't even work, remember before it was unstable and you changed it and left it stable and very good...
You could also remove the ESP SHOW MY TEAM mod and it's useless because it ends up confusing.. You could add the names of the players.. I'll be waiting for a new update so it's really bad to play, you even fixed the freezing on my screen but the FOV is unstable ..

Posted
30 minutes ago, Uncover21 said:

@Saitama I'm sure you didn't make any changes to the FOV, something else happened after this game update, because for me there are times when the FOV doesn't even work, remember before it was unstable and you changed it and left it stable and very good...
You could also remove the ESP SHOW MY TEAM mod and it's useless because it ends up confusing.. You could add the names of the players.. I'll be waiting for a new update so it's really bad to play, you even fixed the freezing on my screen but the FOV is unstable ..

Before the update they worked, now they no longer work. DRAW AIM FOV and SMART FOV don't even work, this function is also useless.
Posted
15 hours ago, Uncover21 said:
Before the update they worked, now they no longer work. DRAW AIM FOV and SMART FOV don't even work, this function is also useless.

1. esp show my team - its very usefull to understand u play with bots or real players
2. smart fov working
3. name will not be added
4. all functions that u dont like u can disable or delete mod at all xD 

Posted (edited)
float CalcFovFromDistance(float distance)
{
    float Radius = Share::AimFov;
    //distance 250 - fov 2
    //distance 0 > fov 15

    if(Share::SmartFov)
    {
        if(distance < 10)
        {
            // 42 - 20*40/250
            Radius = Radius * 3 + 2 - distance * Radius * 3 / 250;
        }
        else if(distance < 20)
        {
            // 32 - 20*30/250
            Radius = Radius * 2 + 2 - distance * Radius * 2 / 250;
        }
        else
        {
            // 15 - 50*13/250
            Radius = Radius + 2 - distance * Radius / 250;
        }

        // Share::SmartFovValue = Radius;
    }
    else
    {
        if(distance < 8) Radius = Radius * 3;
        else if(distance < 15) Radius = Radius * 2;
    }

    Radius *= 8;
    return Radius;
}

so if default fov is 10 and distance to player will be 150: 10 + 2 - 150*10/250 = 6
and if distance is 15: 10*2 + 2 - 15*10*2/250 = 21.76

instead of default 10

Updated by Saitama
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines