I know how to make send attack on most servers and i wanna make wait hack now. My question is what i need to do to make wait hack? :) Please contact here or discord : Smk#2879.
You need to do this by hand. Iterate over every monster in your range and send a packet.Quote:
I wanna know which packet need to make wait hack. For example to send attack to target its "Send Battle Attack Packet error" + target id. Or any other way to make attack to multiple targets :D.
For example like this:Quote:
Any update on this? you managed to find out how?
typedef std::map<DWORD, DWORD*> TCharacterInstanceMap;
DWORD CharacterManagerInstance = *reinterpret_cast<DWORD*>(Globals::iCPythonCharacterManagerInstance + 0);
TCharacterInstanceMap m_kAliveInstMap = *(TCharacterInstanceMap*)(*reinterpret_cast<DWORD*>(CharacterManagerInstance + 32) + 4);
for (auto itor = m_kAliveInstMap.begin(); itor != m_kAliveInstMap.end(); ++itor)
{
DWORD* instance = itor->second;
DWORD dVID = itor->first;
if (instance == NULL) //|| GameFunctions::InstanceBaseIsDead(instance)instance == GameFunctions::PlayerNEW_GetMainActorPtr()
{
continue;
}
AttackPacket(StreamInstance, 0, dVID);
Sleep(50);
}