public List <string> ObtenerListaObjectives(string archivo)
        {
            //Lista Objectives
            List <string> ObjectivesEnLaPartida = new List <string>();

            //Crear lector.
            Lector = new BinaryReaderBigEndian(new FileStream(archivo, FileMode.Open, FileAccess.Read));

            BuscadorPartida(Lector, ObjectivesEnLaPartida, 0xEC, "42", false);

            //Cerrar el lector.
            Lector.Close();

            return(ObjectivesEnLaPartida);
        }
        public List <string> ObtenerListaInventario(string archivo)
        {
            //Lista Objectives
            List <string> InventarioEnLaPartida = new List <string>();

            //Crear lector.
            Lector = new BinaryReaderBigEndian(new FileStream(archivo, FileMode.Open, FileAccess.Read));

            //InventarioEnLaPartida.Add("/*------------[Sphinx Inventory]------------*/");
            BuscadorPartida(Lector, InventarioEnLaPartida, 0x3630, "40", true);
            BuscadorPartida(Lector, InventarioEnLaPartida, 0x3EF8, "40", true);
            BuscadorPartida(Lector, InventarioEnLaPartida, 0x47C0, "40", true);
            //InventarioEnLaPartida.Add("/*------------[Mummy Inventory]------------*/");
            BuscadorPartida(Lector, InventarioEnLaPartida, 0x73BC, "40", true);

            //Cerrar el lector.
            Lector.Close();

            return(InventarioEnLaPartida);
        }