Go to file
eraser1 371e8f825e Merge pull request #14 from KawaiiPotato/patch-1
Update to the README
Thanks! :)
2015-09-04 21:25:26 -05:00
@ExileServer/addons/a3_dms oops 2015-09-04 18:42:22 -05:00
Pre-Packed PBO PBO 2015-09-04 11:45:16 -05:00
.gitattributes 🎪 Added .gitattributes & .gitignore files 2015-08-25 17:54:33 +02:00
.gitignore 🎪 Added .gitattributes & .gitignore files 2015-08-25 17:54:33 +02:00
README.md Fixed hyperlinks in Thanks section of README 2015-09-05 10:45:35 +10:00

Instructions

See also: http://www.exilemod.com/forums/topic/dms-defents-mission-system/#post-10434

To install:

Put the pre-packed PBO in your @ExileServer\addons\ directory. It should be alongside exile_server and exile_server_config.

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"];

Optional:

To modify the config:

  • Download the a3_dms folder
  • Edit the config.sqf to your preferences.
  • Pack the a3_dms folder with a PBO tool (PBO Manager or Arma 3 Tools suite)
  • Follow the "To install:" steps useing the PBO you just created instead of the pre-packed one.

HEADLESS CLIENT:

Warning

Headless client is currently broken as of the 4th of September, do not use it as it WILL crash your server.

Add this code to the TOP of your initPlayerLocal.sqf

if (!hasInterface && !isServer) then
{
	1 spawn
	{
		waitUntil {player==player};
		DMS_HC_Object = player;
		publicVariableServer "DMS_HC_Object";
	};
};

Thanks:

  • shaworth for making the README all nice and pretty :)
  • Defent for creating Defent's Mission System.
  • eraser1 for his constant codebase improvments.