public ClientRequestSpawnOtherPetInfoEventArgs(RequestSpawnOtherPet i)
 {
     info = i;
 }
        public static RequestSpawnOtherPet RecvSpawnOtherPet(Packet p)
        {
            p.Skip(2);
            int petid = p.ReadInt();
            int mapid = p.ReadInt();

            RequestSpawnOtherPet i = new RequestSpawnOtherPet
            {
                MapID = mapid,
                PetID = petid
            };

            return i;
        }