2016-10-22 21:15:11 +00:00
Installation:
/////////////////////////////
// MPMissions - modify your mission pbo (epoch.Altis.pbo) as follows.
2017-06-12 19:09:48 +00:00
1) Unpack the Zip file you downloaded from the Github to a folder in a convenient location.
2016-10-22 21:15:11 +00:00
2) Unpack your mission pbo (epoch.Altis.pbo or Exile.Altis.pbo).
2017-06-12 19:09:48 +00:00
3) Open the folder containing the unpacked mission.
2018-04-19 11:54:05 +00:00
4) Copy the debug folder from your download (MPMissions\epoch.Altis or MPMissions\exile.Altis)
2016-10-22 21:15:11 +00:00
5) Merge the line in MPMissions\epoch.Altis\init.sqf with your init.sqf, or use the one provided if you do not have one.
2017-06-12 19:09:48 +00:00
6) Adjust settings for messages shown by the client by changing values in \debug\blckclient.sqf to suit your needs.
(see blckClient.sqf for details)
7) Repack your mission.pbo.
2016-10-22 21:15:11 +00:00
///////////////////////////
2017-06-12 19:09:48 +00:00
///////////////////////////
// Server
// ////////////////////////
2018-04-19 11:54:05 +00:00
Method 1.
Adjust settings in @GMS\addons\custom_server\Configs to suit your needs.
Pack custom_server.
Add the @GMS folder to the root directory of your server (the same location as your mods such as @Epoch or @Exile
Add "@GMS;" to -servermods in the startup parameters for your server.
Method 2.
2017-06-12 19:09:48 +00:00
// Epoch
1) Add the custom_server folder from @epochhive\addons to @epochhive\addons on your server.
// Exile
1) Add the custom_server folder you found in @epochhive\addons to the @ExileServer\addons folder on your server.
2) Adjust configuration, and pack the custom_server folder.
/////////////////////////
// Battleye Exceptions
More to come on this.
Please see the links below for some how-to's and two useful tools to automate adding appropriate exceptions:
http://opendayz.net/threads/a-guide-to-battleye-filters.21066/
https://epochmod.com/forum/topic/29736-all-you-need-to-know-about-be-filters-but-were-too-lazy-to-google/
http://www.exilemod.com/topic/9779-releasetool-bem-battleye-filter-manager-by-themeq/
http://www.exilemod.com/topic/9256-battleye-filter-tool/
http://www.exilemod.com/topic/9708-battleye-filter-editor/
2018-04-19 11:54:05 +00:00
If you would let me know what exceptions you need to add I will start a list in this document.
2016-11-18 11:10:49 +00:00
2016-10-22 21:15:11 +00:00
11) Start your server and join. By default missions will start spawning in around 5-10 min.
//////////////////////////
// Adjusting configurations settings
a) Unpack custom_server.pbo
b) Make a backup of the relevant configuration file (custom_server\Configs\epoch_configs.sqf)
2017-06-12 19:09:48 +00:00
c) open the mod-specific configuration file custom_server\Configs\epoch_configs.sqf) in Notepad++ or another text editor
2016-10-22 21:15:11 +00:00
d) Modify settings as desired.
e) Repack custom_server.pbo
///////////////////////
// Can I add map, mod or server-specific overrides for certain settings?
Yes !
You can use blck_custom_config.sqf to code any overrides you like. An example for changing some settings for Namalsk is provided.
////////////////////////
// What is this blck_debugON variable about?
2017-06-12 19:09:48 +00:00
It turns on accelerated mission spawning by default and activates additional logging.
2016-10-22 21:15:11 +00:00
You can turn it on or of in custom_server\Compiles\blck_variables.sqf.
Be careful about what you change in this file.
///////////////////////////////////////////
// Further customization
2017-06-12 19:09:48 +00:00
Just about anything about the missions can be modified. The mission template (see Missions\Orange\supply_camp.sqf and Missions\Blue\default.sqf for examples) allows you to define mission specific parameters.
2016-10-22 21:15:11 +00:00
To create a new mission, make a copy of a mission template (e.g., custom_server\Blue\default.sqf). Edit the parameters to your liking and rename to file appropriately.
2018-04-19 11:54:05 +00:00
To add a new mission, create a new mission template, then add the file name (e.g., "newmissions.sqf") to the mission list found in custom_server\Missions.
2016-10-22 21:15:11 +00:00
That mission will now be spawned whenever it is selected from teh list.
2017-06-12 19:09:48 +00:00
Please see the FAQ for more information
2016-10-22 21:15:11 +00:00