Hello epvpers i want to know how to get the mob list around player in order to sendattackpacket them.
that's the sendattackpacket function
Code:
void SendAttackPacket(const uint8_t mode, const uint32_t vid)
{
typedef bool(__thiscall* tSendAttackPacket)(int, const uint8_t, const uint32_t);
const auto fSendAttackPacket = reinterpret_cast<tSendAttackPacket>(SendBattle);
if (fSendAttackPacket)
fSendAttackPacket(*reinterpret_cast<uintptr_t*>(NetPointer), mode, vid);
}