Подведи собственные итоги года совместно с YOUGAME и забери ценные призы! Перейти

//close

Статус
В этой теме нельзя размещать новые ответы.
Начинающий
Начинающий
Статус
Оффлайн
Регистрация
5 Май 2021
Сообщения
50
Реакции
1
video:
Пожалуйста, авторизуйтесь для просмотра ссылки.


No smoke not working when I am in the smoke,works only when I am outside
how can i fix this
 
Последнее редактирование:
video:
Пожалуйста, авторизуйтесь для просмотра ссылки.


No smoke not working when I am in the smoke,works only when I am outside
how can i fix this
set smoke count to 0


Код:
Expand Collapse Copy
            static auto get_smoke_count = *reinterpret_cast<uint32_t**>(utilities::pattern_scan("client.dll", "A3 ? ? ? ? 57 8B CB") + 0x1);
            
            if (config.remove_smoke)
                *(int*)get_smoke_count = 0;
 
literally in the code ....
void c_world::set_flash_duration()
{
if (!g_Configurations.esp.world_noflash)
return;

static auto flash_duration = netvars::get<uint32_t>(FNV1A("m_flFlashDuration"));
*reinterpret_cast<float*>(globals::m_local + flash_duration) = 0.f;
}

u know why it not working
 
void c_world::set_flash_duration()
{
if (!g_Configurations.esp.world_noflash)
return;

static auto flash_duration = netvars::get<uint32_t>(FNV1A("m_flFlashDuration"));
*reinterpret_cast<float*>(globals::m_local + flash_duration) = 0.f;
}

u know why it not working
the way you do it is retarded, just do it as a netvar like this
Код:
Expand Collapse Copy
 NETVAR("DT_CSPlayer", "m_flFlashMaxAlpha", flash_alpha, float)
in ur player_t class
then set it to 0 in FrameRenderStart
 
the way you do it is retarded, just do it as a netvar like this
Код:
Expand Collapse Copy
 NETVAR("DT_CSPlayer", "m_flFlashMaxAlpha", flash_alpha, float)
in ur player_t class
then set it to 0 in FrameRenderStart
if (globals::m_local->is_alive())
globals::m_local->get_flash_alpha() = g_Configurations.esp.world_noflash ? 0.f : 255.f; like this?

NETVAR_OFFSET(get_flash_alpha(), float, "CCSPlayer->m_flFlashMaxAlpha", -0x8)
 
if (globals::m_local->is_alive())
globals::m_local->get_flash_alpha() = g_Configurations.esp.world_noflash ? 0.f : 255.f; like this?

NETVAR_OFFSET(get_flash_alpha(), float, "CCSPlayer->m_flFlashMaxAlpha", -0x8)
1653166110231.png
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху Снизу