Open danyrusdem opened 4 years ago
plz make it enhancement
//add in variables.hpp
inline bool aimbot = false;
inline float aimbot_fov = 0.f;
inline float rcs_x;
inline float rcs_y;
inline float aimbot_smoothing = 2.f;
inline int bone;
inline bool aimbot_isvisiblecheck = true;
inline bool simple_rcs = true;
//menu.cpp in aim tab
menu_framework::check_box(variables::menu::x + 120, variables::menu::y + 45, variables::menu::x + 375, render::fonts::watermark_font, "aimbot enable", variables::aimbot);
menu_framework::slider(variables::menu::x + 120, variables::menu::y + 60, 125, render::fonts::watermark_font, "fov", variables::aimbot_fov, 0.f, 10.f);
menu_framework::slider(variables::menu::x + 120, variables::menu::y + 75, 125, render::fonts::watermark_font, "smooth", variables::aimbot_smoothing, 1.f, 5.f);
menu_framework::check_box(variables::menu::x + 120, variables::menu::y + 90, variables::menu::x + 375, render::fonts::watermark_font, "rcs", variables::simple_rcs);
menu_framework::slider(variables::menu::x + 120, variables::menu::y + 105, 125, render::fonts::watermark_font, "rcs x", variables::rcs_x, 1.f, 3.f);
menu_framework::slider(variables::menu::x + 120, variables::menu::y + 120, 125, render::fonts::watermark_font, "rcs y", variables::rcs_y, 1.f, 3.f);
menu_framework::check_box(variables::menu::x + 120, variables::menu::y + 135, variables::menu::x + 375, render::fonts::watermark_font, "visible only", variables::aimbot_isvisiblecheck);
Pasted from cleminternal/overflow and some other shit this is dont needed.
Menu shit add in menu.cpp
пн, 10 авг. 2020 г., 19:05 vibingdir notifications@github.com:
need some help! the post code, what tab would it be put in? hooks.cpp, main.cpp, or a new tab that i would create?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671444567, or unsubscribe https://github.com/notifications/unsubscribe-auth/AF7NEASWY2ZDUYGWNFWX7NTSAALDNANCNFSM4OWQVQHQ .
In this base you already have aimbot tab.In hooks.cpp you need to call your aimbot in createmove hook.
пн, 10 авг. 2020 г., 22:34 Даниил Демченко danyrusdem@gmail.com:
Menu shit add in menu.cpp
пн, 10 авг. 2020 г., 19:05 vibingdir notifications@github.com:
need some help! the post code, what tab would it be put in? hooks.cpp, main.cpp, or a new tab that i would create?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671444567, or unsubscribe https://github.com/notifications/unsubscribe-auth/AF7NEASWY2ZDUYGWNFWX7NTSAALDNANCNFSM4OWQVQHQ .
NN question, how do i "call" it, exactly?
On Mon, Aug 10, 2020 at 3:37 PM danyrusdem notifications@github.com wrote:
In this base you already have aimbot tab.In hooks.cpp you need to call your aimbot in createmove hook.
пн, 10 авг. 2020 г., 22:34 Даниил Демченко danyrusdem@gmail.com:
Menu shit add in menu.cpp
пн, 10 авг. 2020 г., 19:05 vibingdir notifications@github.com:
need some help! the post code, what tab would it be put in? hooks.cpp, main.cpp, or a new tab that i would create?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671444567 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AF7NEASWY2ZDUYGWNFWX7NTSAALDNANCNFSM4OWQVQHQ
.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671548477, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQFLP3KIUXLP2BFCE4T5LULSABEATANCNFSM4OWQVQHQ .
//call it in createmove hook,after prediction. legitbot::aimbot(cmd);
I'm not at home,but you can dm me on:Danyrusdem#4434
пн, 10 авг. 2020 г., 22:40 vibingdir notifications@github.com:
NN question, how do i "call" it, exactly?
On Mon, Aug 10, 2020 at 3:37 PM danyrusdem notifications@github.com wrote:
In this base you already have aimbot tab.In hooks.cpp you need to call your aimbot in createmove hook.
пн, 10 авг. 2020 г., 22:34 Даниил Демченко danyrusdem@gmail.com:
Menu shit add in menu.cpp
пн, 10 авг. 2020 г., 19:05 vibingdir notifications@github.com:
need some help! the post code, what tab would it be put in? hooks.cpp, main.cpp, or a new tab that i would create?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <
https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671444567
,
or unsubscribe <
https://github.com/notifications/unsubscribe-auth/AF7NEASWY2ZDUYGWNFWX7NTSAALDNANCNFSM4OWQVQHQ
.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671548477 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AQFLP3KIUXLP2BFCE4T5LULSABEATANCNFSM4OWQVQHQ
.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671549808, or unsubscribe https://github.com/notifications/unsubscribe-auth/AF7NEARK4D72ZU42MGYTN3DSABEMVANCNFSM4OWQVQHQ .
Sent, I’m “ten$cent#9662”
On Mon, Aug 10, 2020 at 3:44 PM danyrusdem notifications@github.com wrote:
//call it in createmove hook,after prediction. legitbot::aimbot(cmd);
I'm not at home,but you can dm me on:Danyrusdem#4434
пн, 10 авг. 2020 г., 22:40 vibingdir notifications@github.com:
NN question, how do i "call" it, exactly?
On Mon, Aug 10, 2020 at 3:37 PM danyrusdem notifications@github.com wrote:
In this base you already have aimbot tab.In hooks.cpp you need to call your aimbot in createmove hook.
пн, 10 авг. 2020 г., 22:34 Даниил Демченко danyrusdem@gmail.com:
Menu shit add in menu.cpp
пн, 10 авг. 2020 г., 19:05 vibingdir notifications@github.com:
need some help! the post code, what tab would it be put in? hooks.cpp, main.cpp, or a new tab that i would create?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <
https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671444567
,
or unsubscribe <
https://github.com/notifications/unsubscribe-auth/AF7NEASWY2ZDUYGWNFWX7NTSAALDNANCNFSM4OWQVQHQ
.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub <
https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671548477
, or unsubscribe <
https://github.com/notifications/unsubscribe-auth/AQFLP3KIUXLP2BFCE4T5LULSABEATANCNFSM4OWQVQHQ
.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671549808 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AF7NEARK4D72ZU42MGYTN3DSABEMVANCNFSM4OWQVQHQ
.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/designer1337/csgo-cheat-base/issues/63#issuecomment-671551276, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQFLP3NDSEW2EDOQR7M5QFDSABEZTANCNFSM4OWQVQHQ .
'pCSPlayer': undeclared identifier
how do I fix?
nvm