Hi
i want to search for a widestring[6] (utext) in memory and get the offset value. I've tryed FindPattern.. (searched for the bytes manually in memory - utext[6] -> array of bytes[25])
But it returns only shit... Its not the address...Code:string pattern = "50 00 6C 00 61 00 79 00 65 00 72 00 05 00 00 00 E8 CD 53 44 50 A3 CB 44 00"; string mask = "xxxxxxxxxxxxxxxxxxxxxxxxx"; uint test = mem.FindPattern(pattern, mask); listBox1.Items.Add("Player Found at " + test);