My dirty little hack works, but is not pretty.
Find:
Code: Select all
cout << "Took: " << (int)((this_time - curr)/1000) << " seconds. Processed " << total_items << " items, " << total_spawns << " spawns.\n";Code: Select all
cout << "Took: " << (int)((this_time - curr)/1000) << " seconds. Processed " << total_items << " items, " << total_spawns << " spawns in file: " << argv[argc-1] << ".\n";Unfortunately, there seems to be an extra "." period at the beginning that I could strip out, but I'm no coder, just hack.Took: 5 seconds. Processed 0 items, 764 spawns in file .EQ2PacketLog.log.
Thx