Any server admins around please?
I have a mission with its dependencies I want to run a dedi server. .pbo, .sqf, .ext files etc
Do I place all of these into the MPMissions folder or do I create a sub folder in the MPMissions folder?
Also, how do I specify the mission in the server config?
Many thanks.
All the files should be packed into the .pbo and should be called missionName.Altis or missionName.Stratis or whatever terrain you are using.
Drop the .pbo in the MP mission folder.
To make the mission load automatically when the server starts you need to edit the server.cfg. Specifically this part:
Code:
// MISSIONS CYCLE
class Missions
{
class Mission1
{
template="MyMission.Altis";
difficulty="Regular";
};
};
Rename the
Code:
template="MyMission.Altis";
Code:
difficulty="Regular";
// "Recruit", "Regular", "Veteran", "Mercenary"