Начинающий
- Статус
- Оффлайн
- Регистрация
- 11 Дек 2017
- Сообщения
- 3
- Реакции
- 0
Today we will fix the grenade prediction crashing in the menu.
in Esp.cpp
find void CEsp :: OnRender ()
and search for:
[TABLE="class: brtb_item_table"][TBODY][TR][TD]code:[/TD][/TR]
[TR][TD]if (Settings :: Esp :: esp_GrenadePrediction)
GrenadePrediction ();[/TD][/TR][/TBODY][/TABLE]
and replace it with
[TABLE="class: brtb_item_table"][TBODY][TR][TD]code:[/TD][/TR]
[TR][TD]if (Interfaces :: Engine () -> IsInGame () && Settings :: Esp :: esp_GrenadePrediction)
GrenadePrediction ();[/TD][/TR][/TBODY][/TABLE]
Voila, we fixed crashes in the menu.
in Esp.cpp
find void CEsp :: OnRender ()
and search for:
[TABLE="class: brtb_item_table"][TBODY][TR][TD]code:[/TD][/TR]
[TR][TD]if (Settings :: Esp :: esp_GrenadePrediction)
GrenadePrediction ();[/TD][/TR][/TBODY][/TABLE]
and replace it with
[TABLE="class: brtb_item_table"][TBODY][TR][TD]code:[/TD][/TR]
[TR][TD]if (Interfaces :: Engine () -> IsInGame () && Settings :: Esp :: esp_GrenadePrediction)
GrenadePrediction ();[/TD][/TR][/TBODY][/TABLE]
Voila, we fixed crashes in the menu.
Последнее редактирование: