SAMP bypass anticheat

gdzies

Member
Joined
May 10, 2018
Messages
13
Reaction score
1
Is there an easy way to bypass the SAMP anticheat in c++ without copying sob0it code?
please i been asking for days help please!!!!!!
the anticheat the freezes you when you writeprocessmemory in c++ you know about it
 

gdzies

Member
Joined
May 10, 2018
Messages
13
Reaction score
1
well even if there's some way to bypass anticheat no one's gonna tell you, they're watching this kind of forums....
its not a server anti cheat is integrated samp anti cheat that freezes your game when you writeprocessmemory in c++
and sobeit already has function to bypass it but im looking for another way to do it cause i couldnt implement the function myself
 

gdzies

Member
Joined
May 10, 2018
Messages
13
Reaction score
1
Code:
DWORD address  = samp.dll + 0x99250;
DWORD value = 507680707;

WriteProcessMemory(handle, (LPVOID)address, (LPVOID)&value, 4, NULL);

DWORD address1 = samp.dll + 0x286923;
DWORD value1 = 17848;

WriteProcessMemory(handle, (LPVOID)address1, (LPVOID)&value1, 4, NULL);
[/QUOTE]

I just did this both in c++ and cheat engine it doesnt work i used samp 0.3.7. and samp 0.3.7-R3 both versions dont seem to work
which version should i use
(by not working i mean i still get freezed)
 

gdzies

Member
Joined
May 10, 2018
Messages
13
Reaction score
1
samp 0.3.7 r1
Set both values still getting freezed in r1
but in 0.3.7 r1 i dont get freezed instantly like r3 it takes 1 minute to 2
even if i dont set the values

should i send you the program i made so you can test it?
my name on steam is "shatrtit" with engineer smiling please add me
or i can add you
 
Last edited:

gdzies

Member
Joined
May 10, 2018
Messages
13
Reaction score
1
i dont hav steam, u can add me on discord dark#7777
I dont have discord either. i just want a way to communicate with you privately is it possible to PM someone in this forum? if so we can do it that way
 

OcX

Member
Joined
Apr 16, 2015
Messages
5
Reaction score
0
uint32_t sampAntiCheat = reinterpret_cast<uint32_t>(LoadLibrary("samp.dll"));
WriteMemory((void*)((uint8_t *)sampAntiCheat + 0x99250), (uint8_t *)"\xC3", 1);
WriteMemory((void*)((uint8_t *)sampAntiCheat + 0xB2F70), (uint8_t *)"\xB8\x45\x00\x00\x00\xC2\x1C\x00", 8);

Использовать при старте игры.
 
Top