Hi,
 
	I just started reverse engineering the TOS network protocol and your project has been a huge help with that. So I thought about also contributing a bit.  
	I noticed that your ZC_DEAD Packet is not correct.
 
	I program in Java and I don't know how to do stuff in C# so I don't want to create a pull-request, but here is the Structure of the Packet
 
public class Dead {  
  private short size;
  private int handle;
  private byte unk1;
  private byte killCount;
  private byte unk3;
  private byte unk4;
  private Killer[] killer;
  private static class Killer {
    private int handle;
    private int xp;
    private int classXp;
  }
}
	I hope this will be useful for you.