• На форуме разыгрывается более 300 ключей на приватные читы! Для этого нужно всего-лишь нажать соответствующую кнопку в теме!

    Подробности по ссылке:
    https://t.me/yougame_official/66

Исходник Counter strike 2 base

Пользователь
Статус
Оффлайн
Регистрация
3 Янв 2020
Сообщения
114
Реакции[?]
124
Поинты[?]
28K
Hello here a Counter-Strike 2 (CS2) base project that includes some basic features like bunny hopping (bhop), hit sounds, engine prediction, and some visual I've also added comments throughout the code to help you understand and learn from. i also tried keep stuff simple basic and clean

it also uses schema system get the offsets so no generation files needed
mostly everything is up to date / working

there is no config system at this stage, base is not fully completed, if you wanna do commits to it you can

credits to here for the menu, you can easily add your own or another in, i just used this for the imgui framework
Пожалуйста, авторизуйтесь для просмотра ссылки.


the github link to the base, its a source
Пожалуйста, авторизуйтесь для просмотра ссылки.
 
Imgui Seller
Пользователь
Статус
Оффлайн
Регистрация
26 Авг 2023
Сообщения
408
Реакции[?]
40
Поинты[?]
38K
Hello here a Counter-Strike 2 (CS2) base project that includes some basic features like bunny hopping (bhop), hit sounds, engine prediction, and some visual I've also added comments throughout the code to help you understand and learn from. i also tried keep stuff simple basic and clean

it also uses schema system get the offsets so no generation files needed
mostly everything is up to date / working

there is no config system at this stage, base is not fully completed, if you wanna do commits to it you can

credits to here for the menu, you can easily add your own or another in, i just used this for the imgui framework
Пожалуйста, авторизуйтесь для просмотра ссылки.


the github link to the base, its a source
Пожалуйста, авторизуйтесь для просмотра ссылки.
ss?
 
Начинающий
Статус
Оффлайн
Регистрация
31 Янв 2022
Сообщения
19
Реакции[?]
0
Поинты[?]
1K
Hello here a Counter-Strike 2 (CS2) base project that includes some basic features like bunny hopping (bhop), hit sounds, engine prediction, and some visual I've also added comments throughout the code to help you understand and learn from. i also tried keep stuff simple basic and clean

it also uses schema system get the offsets so no generation files needed
mostly everything is up to date / working

there is no config system at this stage, base is not fully completed, if you wanna do commits to it you can

credits to here for the menu, you can easily add your own or another in, i just used this for the imgui framework
Пожалуйста, авторизуйтесь для просмотра ссылки.


the github link to the base, its a source
Пожалуйста, авторизуйтесь для просмотра ссылки.
LINK: fatal error LNK1181: cannot open input file "freetype.lib"

Sorry for the silly question, but what should I do about this? I don't know C++, and I would like to start learning through cheat examples. I checked, freetype.lib is there and set up in the project. I also tried adding it via Git, but that didn't work.
 
Пользователь
Статус
Оффлайн
Регистрация
3 Янв 2020
Сообщения
114
Реакции[?]
124
Поинты[?]
28K
LINK: fatal error LNK1181: cannot open input file "freetype.lib"

Sorry for the silly question, but what should I do about this? I don't know C++, and I would like to start learning through cheat examples. I checked, freetype.lib is there and set up in the project. I also tried adding it via Git, but that didn't work.
ahh my bad i see the problem i fix and up to github

go to linker > general and add this in, additional library directories

$(SolutionDir)counter strike 2 base\rerenderer\freetype\binary;$(SolutionDir)counter strike 2 base\renderer\freetype\binary;%(AdditionalLibraryDirectories)

just pushed to github to


if someone finds a better menu i can add it in, and replace the current, im not making 1 im not that good haha
 
Последнее редактирование:
Начинающий
Статус
Оффлайн
Регистрация
31 Янв 2022
Сообщения
19
Реакции[?]
0
Поинты[?]
1K
ahh my bad i see the problem i fix and up to github

go to linker > general and add this in, additional library directories

$(SolutionDir)counter strike 2 base\rerenderer\freetype\binary;$(SolutionDir)counter strike 2 base\renderer\freetype\binary;%(AdditionalLibraryDirectories)

just pushed to github to


if someone finds a better menu i can add it in, and replace the current, im not making 1 im not that good haha
thx
 
Пользователь
Статус
Оффлайн
Регистрация
3 Янв 2020
Сообщения
114
Реакции[?]
124
Поинты[?]
28K
1735822485296.png
prob add in this menu tomorrow, alot cleaner code wise etc be easier to build from and learn, credits hefan2429
 
Последнее редактирование:
Начинающий
Статус
Оффлайн
Регистрация
1 Ноя 2024
Сообщения
41
Реакции[?]
32
Поинты[?]
27K
so its just fatal base pasta
like shitty remove flash(ofc u can hook FlashbangOverlay and just return)
1735847150561.png
different codestyle, etc
stop using inline movement_t* movement = new movement_t; something like this, u have a std::make_unique for it
 
Участник
Статус
Оффлайн
Регистрация
6 Апр 2021
Сообщения
351
Реакции[?]
219
Поинты[?]
125K
Пользователь
Статус
Оффлайн
Регистрация
3 Янв 2020
Сообщения
114
Реакции[?]
124
Поинты[?]
28K
cant wait for some more updates and lagcomp example
that be soon just added the new menu and had update to latest imgui and do some other stuff

so its just fatal base pasta
like shitty remove flash(ofc u can hook FlashbangOverlay and just return)
Посмотреть вложение 294659
different codestyle, etc
stop using inline movement_t* movement = new movement_t; something like this, u have a std::make_unique for it
i already changed that just have not been uploaded yet, its now

examples
inline std::unique_ptr<movement_t> movement = std::make_unique<movement_t>();
inline std::unique_ptr<manager_t> manager = std::make_unique<manager_t>(/* base / 0, / tok */ 0);

also the noflash have comment called //bare bones no flash
was added just make sure schema was working correctly

edit;
so dislike have the translate on _-
 
Сверху Снизу