(adsbygoogle = window.adsbygoogle || []).push({});
Hi NextGenUpdate,
I haven't released anything for awhile and because of that I'm going to be releasing a library I spent quite a long time on.
This library will allow you to read, decompress, load some assets from the fastfile. This library supports all .ff files, and can show you the basic information from the fastfile. I will be leaving the source code with the tool!
The library would work for all .NET platforms.
The basic usage of the library is explained below:
Add the library as a reference at the top:
using AWFastFileLibrary;
Make an openFileDialog like I did:
private void openFastFileToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog openDialog = new OpenFileDialog();
if (openDialog.ShowDialog() == DialogResult.OK)
{
AdvancedWarfareFastFile ff = new AdvancedWarfareFastFile(openDialog.FileName);
}
}
AdvancedWarfareFastFile(string filePath);
To view the contents of a zone file, call this function:
AdvancedWarfareZoneFile zone = new AdvancedWarfareZoneFile();
zone.ReadZone(byte[] zone);
Also this library is currently in beta stage, if you want to make suggestions or give me some ideas of what to implement I'll be more than happy to listen to what you have to say!
Please report any problems or errors you have. Thanks!
You must login or register to view this content.
Download Link:
You must login or register to view this content.
Credits:
aerosoul94
Enjoy!