1.Open CheatEngine
2. Open game.exe process
3. Memory view
4. Search (array of) byte
33 DB 3B C3 89 44 24 28
5. note the address
6. add 4bytes to the adress
7. Your Done
to put i multiclient.ini
[SETTING]
ADDRESS=0x00468EEA
those who wanna make their own multiclient loader can use the following snippet and implement it into their current coding..
Then the check is skipped
Hope you can use it
2. Open game.exe process
3. Memory view
4. Search (array of) byte
33 DB 3B C3 89 44 24 28
5. note the address
6. add 4bytes to the adress
7. Your Done
to put i multiclient.ini
[SETTING]
ADDRESS=0x00468EEA
those who wanna make their own multiclient loader can use the following snippet and implement it into their current coding..
PHP Code:
//---MultiClient
static string sig_multi = "33 DB 3B C3 89 44 24 28";
static string mask_multi = "xxxxxxxx";
//---MultiClient
uint multi_client = HomeGrown.Hacking.dwFindPattern(pr, 0x401000, sig_multi, mask_multi)+4;
writememory multi_client,&hEB20
Hope you can use it