Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
if (C::Get<bool>(Vars.bMiscLimitTargetsPerTick))
{
for (int idx = 0, i < 16, i++) //we iterate through less entities than needed, therefore lowering the targets per tick scan.
{
...
}
}
else
{
// do it normally lmao
}
if (C::Get<bool>(Vars.bMiscLimitTargetsPerTick))
{
for (int idx = 0, i < 16, i++) //we iterate through less entities than needed, therefore lowering the targets per tick scan.
{
...
}
}
else
{
// do it normally lmao
}
the problem is that you are not limiting targets per tick you are just limiting the ragebot scan to 16 players, if you don't see any problem go back to learncpp.com please
the problem is that you are not limiting targets per tick you are just limiting the ragebot scan to 16 players, if you don't see any problem go back to learncpp.com please
const bool bFrameBelowTickRate = globals->iIntervalPerTick > Iglobals->flAbsFrameTime;
const bool bFrameBelowExpected = globals->iIntervalPerTick * 2 > globals->flAbsFrameTime
// give this the initial value of true
bool bTargetUpdateTick = true;
// we only wanna update constantly if our frames arent fucking dying lmfao
if ( bFrameBelowTickRate )
bTargetUpdateTick = !( globals->iTickCount % 3 );
else if ( bFrameBelowExpected )
bTargetUpdateTick = !( globals->iTickCount % 2 );
// then if our frames are bad and we dont wanna update every fucking tick so we dont run cs slideshow
if ( !bTargetUpdateTick )
return;
if (C::Get<bool>(Vars.bMiscLimitTargetsPerTick))
{
for (int idx = 0, i < 16, i++) //we iterate through less entities than needed, therefore lowering the targets per tick scan.
{
...
}
}
else
{
// do it normally lmao
}
I see what you did here lmfao but yeah meant i believe so anyway the amount of times you scan through entities per tick as that would make sense for fps reasons anyway lmao
const bool bFrameBelowTickRate = globals->iIntervalPerTick > Iglobals->flAbsFrameTime;
const bool bFrameBelowExpected = globals->iIntervalPerTick * 2 > globals->flAbsFrameTime
// give this the initial value of true
bool bTargetUpdateTick = true;
// we only wanna update constantly if our frames arent fucking dying lmfao
if ( bFrameBelowTickRate )
bTargetUpdateTick = !( globals->iTickCount % 3 );
else if ( bFrameBelowExpected )
bTargetUpdateTick = !( globals->iTickCount % 2 );
// then if our frames are bad and we dont wanna update every fucking tick so we dont run cs slideshow
if ( !bTargetUpdateTick )
return;
I see what you did here lmfao but yeah meant i believe so anyway the amount of times you scan through entities per tick as that would make sense for fps reasons anyway lmao
stopping your hitscan when certain things are reached then when they arent it continues effectively doing what this guy wants only updating hitscan when fps is good enough just run it in your target selection ez
stopping your hitscan when certain things are reached then when they arent it continues effectively doing what this guy wants only updating hitscan when fps is good enough
only stops on the certain condition and if this guys pasting which most people do on this forums specifically legendware that wont help also its only stopping for a few ticks then continuing effectively limiting the targets hitscan cycles through per tick
only stops on the certain condition and if this guys pasting which most people do on this forums specifically legendware that wont help also its only stopping for a few ticks then continuing effectively limiting the targets hitscan cycles through per tick