Jump to content
  • 0

mission.sqm convertation


Demellion

Question

Hi there, anyone can give an advice how to convert mission.sqm from pre-3DEN format to a newer (you can compare diffreneces from 0.3.7 and 0.3.8 builds of Epoch).

Older:

...
class Mission {

class Intel{};
class Groups{};
class Vehicles{};
class Markers{};
};
...

Newer:

class Mission {
    class Entities {
        Item0 {
            type = "Group";
            ...
        };
        Item2 {
            type = "Vehicle";
            ...
        };
        Item2 {
            type = "Marker";
            ...
        };
    };
};

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
On 12.04.2016 at 7:22 PM, vbawol said:

Hey Demellion, check out this PHP script I made to initially convert Epochs mission files over. Hopefully this gives you an idea of what I did to convert them.

https://raw.githubusercontent.com/EpochModTeam/Epoch/33964589edc063f3a76127aa630339a00d9e7cf5/Tools/PHP/ConvertMission2dto3d.php

Thanks much.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Discord

×
×
  • Create New...