View Single Post
  #8  
Old 08-14-2012, 09:21 PM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

According to the code:

Code:
void PathManager::DumpPath(string filename)
{
	ofstream o_file;
	o_file.open(filename.c_str(), ios_base::binary | ios_base::trunc | ios_base::out);
	o_file.write("EQEMUPATH", 9);
	o_file.write((const char*)&Head, sizeof(Head));
	o_file.write((const char*)PathNodes, (sizeof(PathNode)*Head.PathNodeCount));
	o_file.close();
}
So I assume it should be in your eqemu base folder.
Reply With Quote