Гайд [Indigo] ImGui::Hotkey, Aim Key, Aim Panic Key

Олдфаг
Олдфаг
Статус
Оффлайн
Регистрация
5 Июл 2017
Сообщения
2,124
Реакции
1,189
R4O4DSG.jpg



Так-же можно переделать бинд кнопки для триггер бота и добавить для визуалов
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Well its not working when i check custrom key and bind anything aimbot jus tnot working sick tut
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
It works. I checked everything
Its not because indigo is using IN_ATTACK so its default mouse1. Ofc its working but i have to bind another key for expample mouse2 and when i press mouse2 nothing happens but when im holding mouse2 and press mouse1 then aimbot is working
 
Its not because indigo is using IN_ATTACK so its default mouse1. Ofc its working but i have to bind another key for expample mouse2 and when i press mouse2 nothing happens but when im holding mouse2 and press mouse1 then aimbot is working
What is wrong? When holding, the aimbot (not shooting) starts to work
Mb I do not understand something
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Aimbot is not working with binded key. U have to change:
m_bAttack = (m_pCmd->buttons & IN_ATTACK);
to
m_bAttack = (m_pAim_KeyTrue);
Then bind is working
Im checking now, everything works fine. I do not understand the problem

Aimbot works if !m_pAim_PanicKeyTrue && m_pAim_KeyTrue
Everything works
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
T
Im checking now, everything works fine. I do not understand the problem

Aimbot works if !m_pAim_PanicKeyTrue && m_pAim_KeyTrue
Everything works
Them something is missing in your tutorial because aimbot is not working when i press "
Aim On Custom Key"
Its working obly with mouse1

And therew is no "!m_pAim_PanicKeyTrue " in your post
 
T

Them something is missing in your tutorial because aimbot is not working when i press "
Aim On Custom Key"
Its working obly with mouse1

And therew is no "!m_pAim_PanicKeyTrue " in your post
In my source m_pAim_KeyTrue2 changed to m_pAim_PanicKeyTrue

I changed the fire button in the game to mouse 2, and changed custom key to mouse 2, all works (Aim Assist + Shooting)
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Why, custom key only for Aim Assist, u can write in the console bind mouse2 +attack, If u need it. You can use fire key for normal shooting, custom key for aim assiast, if u full legit m8
But dude custom key do nothing u missing something in your post i think. Because when im holding custom key just nothing happens
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
Expand Collapse Copy
bool CAimbot::IsEnable()
{
    if (GetAsyncKeyState(Settings::Aimbot::aim_PanicKey) & 0x1)
    {
        m_pAim_KeyTrue2 = !m_pAim_KeyTrue2;
        m_pAim_KeyTrueTime = GetTickCount64();
    }

    if (Settings::Aimbot::aim_OnKey && GetAsyncKeyState(Settings::Aimbot::aim_Key))
    {
        m_pAim_KeyTrue = true;
    }
    else
    {
        m_pAim_KeyTrue = false;
    }


    if (m_pAim_KeyTrue2)
        return false;

    if (Settings::Aimbot::aim_OnKey && !m_pAim_KeyTrue)
        return false;

    if (!m_pLocal || !m_pCmd)
        return false;

    if (!Settings::Aimbot::weapon_aim_settings[iWeaponID].aim_Active)
        return false;

    if (!m_pLocal->WeaponAmmo || m_pLocal->bInReload)
        return false;

    if (m_pLocal->WeaponType > WEAPON_TYPE_SNIPER)
        return false;

    if (g_pTriggerbot && g_pTriggerbot->bTriggerAttack)
        return false;

    return true;
}
Should work but its not why?
 
Назад
Сверху Снизу