ImparatorHacker
Bronz Üye
- Katılım
- 13 Şub 2023
- Mesajlar
- 40
- Beğeniler
- 11
dump ladıgınız dosyadan (ctrl f ile sendchatpacket yazarak adresi alıp go to adres diyip push kısmına geliceksiniz)
fotoraf da gösterilen yerler : nkstream ile packet dir
fotoraf da gösterilen yerler : nkstream ile packet dir
C++:
class Packet
{
public:
static bool SendChatPacket(DWORD NkStream, const char* text, BYTE Type)
{
try
{
typedef bool(__thiscall* tSendChatPacket)(DWORD NkStream, const char* c_szChat, BYTE byType);
tSendChatPacket SendChatPacket = (tSendChatPacket)Ezgi->e_assembly->SendChatPacketCall; // buldugumuz call adresi buraya gelmelid,r
return SendChatPacket(NkStream, text, Type);
}
catch (...) {}
}
};
DWORD WINAPI SendChatPacket_ChatSpawm(HMODULE hModule)
{
while (true)
{
if (Ezgi->Player->m_iChatSpawm)
{
Packet::SendChatPacket(*(DWORD*)0xxxxx, "@Coded Luna Valerie", 0);// 0xxxxx yerine buldugumuz mov ecx deki adres
}
Sleep(Ezgi->Player->m_iChatSpawmSpeed);// sleep ile döngü hızı ayarlanır burayı istediginiz gibi ayarlaya bilirsiniz
}
}