cls Posted March 18, 2011 Share 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 Link to comment Share on other sites More sharing options...
hannes08 Posted March 18, 2011 Share Posted March 18, 2011 Hi cls,did you read this? Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler] Link to comment Share on other sites More sharing options...
jvanegmond Posted March 18, 2011 Share 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 Link to comment Share on other sites More sharing options...
cls Posted March 18, 2011 Author Share 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? Link to comment Share on other sites More sharing options...
jvanegmond Posted March 18, 2011 Share 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 Link to comment Share on other sites More sharing options...
cls Posted March 18, 2011 Author Share Posted March 18, 2011 Does NomadMemory have the function i require? Link to comment Share on other sites More sharing options...
jvanegmond Posted March 18, 2011 Share 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 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now