cls 0 Posted March 18, 2011 (edited) Hi. What's the best way to search process' memory for a predefined string? Like i know that my string is "xxx". Is there any specific function like MemoryFind("xxx") or should i make a run over the whole process' memory with a cycle? If it helps, the problem is the following. I have to find the beginning of my string in the addon for WoW. Edited March 18, 2011 by cls Share this post Link to post Share on other sites
hannes08 39 Posted March 18, 2011 Hi cls,did you read this? Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler] Share this post Link to post Share on other sites
jvanegmond 306 Posted March 18, 2011 Is there any specific function like MemoryFind("xxx") or should i make a run over the whole process' memory with a cycle?And how do you think MemoryFind would work? Just run over the whole process' memory checking if it contains the string. github.com/jvanegmond Share this post Link to post Share on other sites
cls 0 Posted March 18, 2011 It´s not about the game by the way. It´s just about the function. I mentioned the game in order to make things clear. But also i need this to use in my other projects. I know that it all ends with running over the whole memory. The question is: do we have some precompiled AutoIt function to search the memory or should i make one myself? Share this post Link to post Share on other sites
jvanegmond 306 Posted March 18, 2011 The UDFs, such as NomadMemory are not "precompiled" at all. They're just functions written in AutoIt much like the functions you can write yourself. github.com/jvanegmond Share this post Link to post Share on other sites
cls 0 Posted March 18, 2011 Does NomadMemory have the function i require? Share this post Link to post Share on other sites
jvanegmond 306 Posted March 18, 2011 Does NomadMemory have the function i require?It would be a simple job to open the file and check for yourself. github.com/jvanegmond Share this post Link to post Share on other sites