Dark Slipstream Posted May 12, 2009 Report Posted May 12, 2009 (edited) Removed. Edited August 17, 2009 by Dark Slipstream
Dark Slipstream Posted May 12, 2009 Author Report Posted May 12, 2009 I updated main post. I forgot to add my latest Slipstream.dll. It is needed for a conversion in ScanForBytes. I hope people learn how to use this.
yungbol Posted May 12, 2009 Report Posted May 12, 2009 Just changed your topic names to include the language as you requested. Nice job on releasing all these snippets.
Dark Slipstream Posted May 12, 2009 Author Report Posted May 12, 2009 Thanks very much. I'll add some more snipplets and sources later today.
dschu012 Posted May 12, 2009 Report Posted May 12, 2009 A recursive function is a function that calls itself. Example://C++ Returns the Greatest Common Denominator int gcd(int x, int y) { if (y == 0) return x; else return gcd(y, x % y); //calls itself } What you posted is a linear search
Dark Slipstream Posted May 12, 2009 Author Report Posted May 12, 2009 thanks, I'll have someone update the title.
simba Posted May 14, 2009 Report Posted May 14, 2009 (edited) Great, thanks a lot for the searching bytes and dll.Look works, but now how to know the hex adress of the scanbyte result? Thanks. Ok, i have my answer, for example :MessageBox.Show("Here : " + i.ToString("X2")); Edited May 14, 2009 by simba
Dark Slipstream Posted May 16, 2009 Author Report Posted May 16, 2009 If you are using the offset for File Handling, it doesn't have to be in HEX format, it can be in DEC.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now