Visual only ESP with TGF

Начинающий
Статус
Оффлайн
Регистрация
15 Май 2017
Сообщения
112
Реакции[?]
29
Поинты[?]
0
I've been making a TGF paste and I'm trying to make it so the ESP Box only shows when enemies are visible, I've yet to find a TGF Paste that has this feature, and when I tried to implement it, the enemies would disappear off my esp but when they re-emerged they would not have the box around them

Does anybody have a TGF source with this feature?
 
5 ночей на aim_ag_texture2
Эксперт
Статус
Оффлайн
Регистрация
6 Апр 2017
Сообщения
826
Реакции[?]
401
Поинты[?]
11K
in void CVisuals::PlayerESP( int index ), after
Код:
CBaseEntity* Entity = I::ClientEntList->GetClientEntity( index );
you can do
Код:
if (your visible only toggle)
     if (!Entity->IsVisible(6))
          return;
does this problem still exists?/is this how you implemented it?
 
Последнее редактирование:
Начинающий
Статус
Оффлайн
Регистрация
15 Май 2017
Сообщения
112
Реакции[?]
29
Поинты[?]
0
in void CVisuals::PlayerESP( int index ), after
Код:
CBaseEntity* Entity = I::ClientEntList->GetClientEntity( index );
you can do
Код:
if (your visible only toggle)
     if (!Entity->IsVisible(6))
          return;
does this problem still exists?/is this how you implemented it?
I think that's how I implemented it

It crashes my game now, I don't know what's wrong xd
 
Последнее редактирование:
Сверху Снизу