or simply IDA. Though not everyone got it.
or simply IDA. Though not everyone got it.
" Spy sappin mah sentry! "
new lib uploaded and main post edited. I've broken my functions down into classes. Hopefully this is what you guys were talking about. Is that a little better?
Edit: nvm...
Am testing it now..
Last edited by -Ryuk-; 01-05-2010 at 01:35 PM.
|Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|
I have made a similar DLL in the past as well, reason I didn't release it was because it'd make things too easy, and have people skip the learning process. But either way, nice job.
Also, when breaking down in classes, make sure to wrap your properties to make them a little bit .. smoother:
Of course you could return the BlackMagic memory reads there straight away, I just put the ObjectManager stuff in there as a filler.Code:public class GameObject { public uint XPosition { get { return ObjectManager.GameObject.X; } } public string Name { get { return ObjectManager.GameObject.Name; } } }
Wrapping it makes calling the properties a lot easier, thus making your DLL more accessible.
Last edited by Seifer; 01-08-2010 at 04:41 PM.