//VBE PATCH
DWORD64 newValuePatch = 0x3844909090909090;
DWORD64 ptrVbePatch = occurence("client.dll", "89 87 ? ? ? ? 44 38 b7 ? ? ? ? 74 13 48 8b 07 48 8b cf 44 88 b7 ? ? ? ? ff 90");
DWORD oldProtect = 0;
VirtualProtect((LPVOID)ptrVbePatch, sizeof(DWORD64), PAGE_EXECUTE_READWRITE, &oldProtect);
*(DWORD64*)(ptrVbePatch) = newValuePatch;
VirtualProtect((LPVOID)ptrVbePatch, sizeof(DWORD64), oldProtect, &oldProtect);
//VBE RENDER
if (*(int*)(pEnt + NetVars["C_DOTA_BaseNPC"]["m_iTaggedAsVisibleByTeam"]) == 30 || *(int*)(pEnt + NetVars["C_DOTA_BaseNPC"]["m_iTaggedAsVisibleByTeam"]) == 14)
{
vec2 w2s;
W2S(GetOrigin(pEnt),w2s);
AddText(w2s, vec4(255, 0, 0, 255), "VISIBLE");
}