What's new

Welcome to HvH Forum!

SignUp Now! Download Free HvH CS2/CS:GO Cheats, CFG, LUA/JS Scripts, And More!


SignUp Now!
Newbie HvHer
User ID
117863
Messages
2
Reactions
3
Level
1
🌀 Private Resolver Drop
Not the best thing ever, but it gets the job done. Coded while I was half drunk, so don’t expect perfection.
Just something real — made by a person, not an AI.

--------------------------------------------------------------------------------------

leave a review and i might update it!😭
 

Password for .zip file is hvh.net

  • !privrizolver.lua
    13.8 KB · Views: 101
User ID
146317
Messages
218
Reactions
290
Level
27
🌀 Private Resolver Drop
Not the best thing ever, but it gets the job done. Coded while I was half drunk, so don’t expect perfection.
Just something real — made by a person, not an AI.

--------------------------------------------------------------------------------------

leave a review and i might update it!😭
for what cheat lmao
 
Newbie HvHer
User ID
20378
Messages
16
Reactions
4
Level
4
🌀 Private Resolver Drop
Not the best thing ever, but it gets the job done. Coded while I was half drunk, so don’t expect perfection.
Just something real — made by a person, not an AI.

--------------------------------------------------------------------------------------

leave a review and i might update it!😭
Code:
local ENGINE_MAX_DESYNC = 58.5786438
nice magic number?
Code:
    local success2, pose = pcall(entity.get_prop, player, "m_flPoseParameter", 11)
    if success2 and pose then
        self.foot_yaw = pose * 360.0 - 180.0
    end
yes lets use pose params to get the yaw in paint callback
Code:
local current_delta = angle_diff(self.eye_yaw, self.foot_yaw)
if delta_change > MICROJITTER_MIN_DELTA then
        local last_sign = self.last_delta > 0 and 1 or -1
        local current_sign = current_delta > 0 and 1 or -1
        if last_sign ~= current_sign then
            if current_time - self.last_flip_time < MICROJITTER_TIME_WINDOW then
                self.delta_flip_count = self.delta_flip_count + 1
            else
                self.delta_flip_count = 1
            end
            self.last_flip_time = current_time
        end
    end
this is wrong, you would have to rebuild balanceadjust and remove this ai coded jitter detection

keep it private next time :p
 
Last edited by a moderator:

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Top