DutchGay101
Active member
- Joined
- Sep 15, 2023
- Messages
- 27
- Reaction score
- 2
Hey i have a problem with my esp, when i draw it it works fine but the limit is only up to 300m, some esp hacks even have up to 30000m and mine just doesnt draw above 300m here is the code that im using to draw the esp:
C++:
if (Bools.Visuals.BoneESP)
{
for (int i = 0; i < MAX_PLAYERS; i++)
{
CPool<CPed, CCopPed>* pedPool = CPools::ms_pPedPool;
CPed* pPed = pedPool->GetAt(i);
if (pPed)
{
DrawBones(i, pPed);
}
}
}