Quote Originally Posted by Cloud View Post
Yeah i just dont know the actual code :/ i suck. this is what i got

int player1 = Mem.ReadInt(0x402AAFD0);
label3.Text = player1.ToString();
how do i convert the output O.o
If you are using my library you can use Mem.ReadStringUnicode (address,11 (or 22 cannot remember how I implemented it)). Otherwise

byte[] playerName = Mem.ReadByteArray(address,22);
label3.Text = Text.Encoding.Unicode.GetBytes(playerName);

something along those lines...