HelpCan't find the correct pattern

Posts 1–8 of 8 · Page 1 of 1
Can't find the correct pattern
I'm looking for the moveleft pattern
What I've got is

Offset:
0x2E8ECA4
Signature:
\xC2\x14\x00\x90\xB8\x00\x00\x00\x00\xBA\x00\x00\x 00\x00\xFF\xD2
Mask:
xxxxx????x????xx

Only the offset is correct
Code:
ForceLeft ( - client.dll if you want to get the offset )
1. A8 80 BF ) + 44 ]
2. A8 80 BF ) + 44 ]
3. 0xA8, 0x80, 0xBF ) + 44 ]
4. \xA8\x80\xBF ) + 44 ] : xxx
Keep in mind that it's + 0x44, not + 44
Quote Originally Posted by WasserEsser View Post
Code:
ForceLeft ( - client.dll if you want to get the offset )
1. A8 80 BF ) + 44 ]
2. A8 80 BF ) + 44 ]
3. 0xA8, 0x80, 0xBF ) + 44 ]
4. \xA8\x80\xBF ) + 44 ] : xxx
Keep in mind that it's + 0x44, not + 44
So is it:
DWORD MoveLeftArray = Mem.FindPatternArr(Client.dwBase, Client.dwSize, "xxx", 3, 0xA8, 0x80, 0xBF) + 0x44;
moveleft = Mem.Read<DWORD>(MoveLeftArray + 2) - Client.dwBase;
?
Quote Originally Posted by l1m3w1r3 View Post
So is it:
DWORD MoveLeftArray = Mem.FindPatternArr(Client.dwBase, Client.dwSize, "xxx", 3, 0xA8, 0x80, 0xBF) + 0x44;
moveleft = Mem.Read<DWORD>(MoveLeftArray + 2) - Client.dwBase;
?
Why MoveLeftArray + 2?
Quote Originally Posted by WasserEsser View Post
Why MoveLeftArray + 2?
I dunno cuz force attack does the same
Quote Originally Posted by l1m3w1r3 View Post
I dunno cuz force attack does the same
That doesn't mean it's the same for ForceLeft. The offset differs from pattern to pattern.
Quote Originally Posted by WasserEsser View Post
That doesn't mean it's the same for ForceLeft. The offset differs from pattern to pattern.
I works now but I still don't understand how you got it
/Solved & closed.
Posts 1–8 of 8 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?