DLL's to Read Charname, Level, Arrows, HP, Etc...

01/19/2008 02:09 ZeRo-ToLeRaNcE#1
Hello people!

i have made finally my DLL to read all information,
COMemReader.dll and COHPReader.dll

this is for COMemreader.dll:

here i show you how to make it work if you want to use this DLL:
you need to put this DLL's as References to your project :)

to declare all the stuff you need this code:

Code:
Public ProcessReader As ReaderLibrary.Reader = New ReaderLibrary.Reader()
Public encoding As Text.Encoding = System.Text.Encoding.UTF7
for strings you need this to do:

Code:
Dim Name As Byte() = ProcessReader.ReadName()
TXTCharName.Text = encoding.GetString(Name)
you can change after the processreader.XXXXXX() what you want, it will show you the functions

for integers you need this to do:

Code:
Dim CharLevel As Byte() = ProcessReader.Level()
TXTLevel.Text = BitConverter.ToInt32(CharLevel, 0)
And only for reading the arrows you need this to do:

Code:
Dim arrows As Byte() = ProcessReader.Arrows()
TXTArrows.Text = BitConverter.ToInt16(arrows, 0)
The only change is ToInt16 function

This is for the COHPReader.dll:

Declare stuff:

Code:
Public ProcessReaderHP As ReaderLibraryHP.HPReader = New ReaderLibraryHP.HPReader()
and then use this to read it:

Code:
Dim HP As Integer = ProcessReaderHP.Read_Current_HP()
TXTCurrentHP.Text = HP
I hope you enjoy this DLL's.

i use olso the file of JOEK the "ma-global.inf" so if there is an new patch and the memoryadressess are changed you have only put the new release of this file by the DLL and it works again. the thread of that file from Joek is: [Only registered and activated users can see links. Click Here To Register...]
01/20/2008 21:11 © Haydz#2
great work :)... i knew you'd do it :)..... havent spoke to you in awhile maybe i'll sign into msn and have a chat :)...well done :)
02/14/2008 02:31 NitroxTurtleMan47#3
cool
04/04/2008 22:28 W3zza#4
man i dont know what to do..please make full description
04/05/2008 00:14 IAmHawtness#5
Quote:
Originally Posted by W3zza View Post
man i dont know what to do..please make full description
If you don't know how to use it, then it's probably not created for people like you ;)
04/05/2008 16:55 psych0zius#6
vb 2008 i guess, but where do you put dlls?
04/05/2008 17:15 Real~Death#7
Quote:
Originally Posted by psych0zius View Post
vb 2008 i guess, but where do you put dlls?
i havent tryed this yet,but i belive you add the .dll to your project,then bascly read it with your gui or whatever