02-23-2013, 08:35 PM
Hey im working on some tools for fun.
I looked in the public source for the structure, can i use this?
I need a bit start help bc i dont know really there to start

atm ive tried this:
public void load(string filename)
{
using (BinaryReader reader = new BinaryReader(File.Open(filename, FileMode.Open)))
{
reader.ReadInt32();
for (int i = 0; reader.BaseStream.Position < reader.BaseStream.Length; i++)
{
m_nAttack[i] = reader.ReadInt32(); // m_nAttack is int32 ?
}
}
Console.WriteLine(m_nAttack + m_strName);
}
but it always gives 0 or some errors


