DMS_Exile/README.md

28 lines
866 B
Markdown
Raw Normal View History

2015-08-25 20:03:07 +00:00
http://www.exilemod.com/forums/topic/dms-defents-mission-system/#post-10434
2015-08-25 15:55:45 +00:00
2015-08-31 05:08:30 +00:00
To install:
Put the pre-packed PBO in your "@ExileServer\addons\" directory. It should be alongside "exile_server" and "exile_server_config".
2015-09-02 05:18:26 +00:00
If you are using infiSTAR and want to keep "_CGM = true;", then set "_UMW = true;", and add "DMS_MissionMarkerCircle","DMS_MissionMarkerDot" to "_aLocalM",
so your "_aLocalM" would look like:
_aLocalM = ["DMS_MissionMarkerCircle","DMS_MissionMarkerDot"];
2015-08-31 05:08:30 +00:00
OPTIONAL:
Download the a3_dms folder and edit the config.sqf to your preferences.
2015-09-02 17:16:22 +00:00
Repack the a3_dms folder with a PBO tool and follow the "To install:" steps :D
HEADLESS CLIENT:
2015-09-02 18:01:39 +00:00
Add this code to the TOP of your initPlayerLocal.sqf
2015-09-02 17:16:22 +00:00
if (!hasInterface && !isServer) then
{
2015-09-02 18:01:39 +00:00
1 spawn
{
waitUntil {player==player};
2015-09-03 03:11:26 +00:00
DMS_HC_Object = player;
publicVariableServer "DMS_HC_Object";
2015-09-02 18:01:39 +00:00
};
2015-09-02 17:16:22 +00:00
};