What's new

Welcome to HvH Forum!

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


SignUp Now!
Rookie HvHer
User ID
106229
Messages
51
Reactions
5
Level
9
Dt code:
static void double_tap()
{
    static int shot_count{};
    static int old_shot_count{ };
    double offset_tick{ };
    auto temp = active_weapon->GetNextPrimaryAttackTickRatio() + modf(active_weapon->watOffset(), &offset_tick);
    auto next_attack = active_weapon->GetNextPrimaryAttackTick();
    auto shoot_tick = (int)next_attack + offset_tick;
    if (temp >= 0.0) {
        if (temp >= 1.0) {
            ++shoot_tick;
        }
    }
    else {
        --shoot_tick;
    }
    bool f = shot_count % 2;
 
 
    if (cmd->pb.nAttack1StartHistoryIndex > -1)
        shot_count++;
    for (int i = 0; i < cmd->pb.input_history.pRep->nAllocatedSize; i++) {
        auto input_history = cmd->get_input_entry(i);
        if (!input_history) {
            continue;
        }
        input_history->nPlayerTickCount = f ? shoot_tick - 1 : 0;
        input_history->flPlayerTickFraction = 0.f;
    }
    cmd->pb.nAttack1StartHistoryIndex = -1;
    old_shot_count = shot_count;
}
 
Administrator
User ID
2180
Messages
422
Reactions
582
Level
50
never post again pls
 
Rookie HvHer
User ID
123674
Messages
132
Reactions
8
Level
17
Dt code:
static void double_tap()
{
    static int shot_count{};
    static int old_shot_count{ };
    double offset_tick{ };
    auto temp = active_weapon->GetNextPrimaryAttackTickRatio() + modf(active_weapon->watOffset(), &offset_tick);
    auto next_attack = active_weapon->GetNextPrimaryAttackTick();
    auto shoot_tick = (int)next_attack + offset_tick;
    if (temp >= 0.0) {
        if (temp >= 1.0) {
            ++shoot_tick;
        }
    }
    else {
        --shoot_tick;
    }
    bool f = shot_count % 2;
 
 
    if (cmd->pb.nAttack1StartHistoryIndex > -1)
        shot_count++;
    for (int i = 0; i < cmd->pb.input_history.pRep->nAllocatedSize; i++) {
        auto input_history = cmd->get_input_entry(i);
        if (!input_history) {
            continue;
        }
        input_history->nPlayerTickCount = f ? shoot_tick - 1 : 0;
        input_history->flPlayerTickFraction = 0.f;
    }
    cmd->pb.nAttack1StartHistoryIndex = -1;
    old_shot_count = shot_count;
}
Its works tho
 
Newbie HvHer
User ID
118972
Messages
32
Reactions
3
Level
9
Dt code:
static void double_tap()
{
    static int shot_count{};
    static int old_shot_count{ };
    double offset_tick{ };
    auto temp = active_weapon->GetNextPrimaryAttackTickRatio() + modf(active_weapon->watOffset(), &offset_tick);
    auto next_attack = active_weapon->GetNextPrimaryAttackTick();
    auto shoot_tick = (int)next_attack + offset_tick;
    if (temp >= 0.0) {
        if (temp >= 1.0) {
            ++shoot_tick;
        }
    }
    else {
        --shoot_tick;
    }
    bool f = shot_count % 2;
 
 
    if (cmd->pb.nAttack1StartHistoryIndex > -1)
        shot_count++;
    for (int i = 0; i < cmd->pb.input_history.pRep->nAllocatedSize; i++) {
        auto input_history = cmd->get_input_entry(i);
        if (!input_history) {
            continue;
        }
        input_history->nPlayerTickCount = f ? shoot_tick - 1 : 0;
        input_history->flPlayerTickFraction = 0.f;
    }
    cmd->pb.nAttack1StartHistoryIndex = -1;
    old_shot_count = shot_count;
}
i dont know how to use :(
 

sj_

Newbie HvHer
User ID
57603
Messages
2
Reactions
0
Level
1
L mans, just a repost
 
Newbie HvHer
User ID
125981
Messages
1
Reactions
0
Level
0
active_weapon and cmd not defined what to do
 
Rookie HvHer
User ID
21
Messages
100
Reactions
16
Level
21
active_weapon and cmd not defined what to do
You delete your source off github, find a resource to learn c++, and start studying how to to reverse, after you learn to reverse, you get all game hooks, and you should be able to call into anything you want 😊
 

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