[C++] DISABLE CHAT with rpm/wpm

UzziAdv

Member
Joined
Oct 16, 2018
Messages
6
Reaction score
1
bool uzzidisablechat = false;

if (ImGui::Checkbox("Disable chat", &uzzidisablechat))
{
if (uzzidisablechat == true)
{
DWORD samp = (DWORD)GetModuleHandle("samp.dll");
DWORD maculatura = samp + 0x7A710;
DWORD valutafrommaculatura = 0xC390;
WriteProcessMemory(handle, (LPVOID)maculatura, (LPVOID)&valutafrommaculatura, 1, NULL);
}
else
{
DWORD samp = (DWORD)GetModuleHandle("samp.dll");
DWORD maculatura = samp + 0x7A710;
DWORD valutafrommaculaturax = 0x56;
WriteProcessMemory(handle, (LPVOID)maculatura, (LPVOID)&valutafrommaculaturax, 1, NULL);
}
}
}

is not tested yet but i think it's ok..
 
Joined
Dec 31, 2015
Messages
712
Reaction score
27
Nice spamming inside present getmodulehandle
Btw dont share bad practise shit on a dll with rpm and wpm

U should stop coding even u dont want to learn haha
not to mention he calls RPM\WPM within internal dll..
also he writes 0xC390 with size of 1 = insta crash
 
Last edited:
Top