mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
Leveraged markdown formatting
Improved readability of README.md
This commit is contained in:
parent
d9d287d69e
commit
5aa9fb06ee
58
README.md
58
README.md
@ -1,29 +1,39 @@
|
|||||||
http://www.exilemod.com/forums/topic/dms-defents-mission-system/#post-10434
|
# 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:
|
||||||
|
* Download the a3_dms folder
|
||||||
|
* Ddit the config.sqf to your preferences.
|
||||||
|
* Repack the a3_dms folder with a PBO tool
|
||||||
|
* Follow the "To install:" steps :D
|
||||||
|
|
||||||
|
|
||||||
To install:
|
## ~~HEADLESS CLIENT:~~
|
||||||
Put the pre-packed PBO in your "@ExileServer\addons\" directory. It should be alongside "exile_server" and "exile_server_config".
|
![Warning](https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Achtung.svg/200px-Achtung.svg.png)
|
||||||
|
|
||||||
If you are using infiSTAR and want to keep "_CGM = true;", then set "_UMW = true;", and add "DMS_MissionMarkerCircle","DMS_MissionMarkerDot" to "_aLocalM",
|
DO NOT USE HEADLESS CLIENT. IT IS CURRENTLY BUGGED AS OF SEPTEMBER 4TH, 2015.
|
||||||
so your "_aLocalM" would look like:
|
IT WILL CRASH YOUR SERVER
|
||||||
_aLocalM = ["DMS_MissionMarkerCircle","DMS_MissionMarkerDot"];
|
|
||||||
|
|
||||||
|
~~Add this code to the TOP of your initPlayerLocal.sqf~~
|
||||||
|
|
||||||
OPTIONAL:
|
```
|
||||||
Download the a3_dms folder and edit the config.sqf to your preferences.
|
if (!hasInterface && !isServer) then
|
||||||
Repack the a3_dms folder with a PBO tool and follow the "To install:" steps :D
|
{
|
||||||
|
1 spawn
|
||||||
|
{
|
||||||
!!!!!!!!!!!!!!!!!DO NOT USE HEADLESS CLIENT. IT IS CURRENTLY BUGGED AS OF SEPTEMBER 4TH, 2015. IT WILL CRASH YOUR SERVER!!!!!!!!!!!!
|
waitUntil {player==player};
|
||||||
HEADLESS CLIENT:
|
DMS_HC_Object = player;
|
||||||
Add this code to the TOP of your initPlayerLocal.sqf //DO NOT USE!!!
|
publicVariableServer "DMS_HC_Object";
|
||||||
|
};
|
||||||
if (!hasInterface && !isServer) then //DO NOT USE!!!
|
};
|
||||||
{ //DO NOT USE!!!
|
```
|
||||||
1 spawn //DO NOT USE!!!
|
|
||||||
{ //DO NOT USE!!!
|
|
||||||
waitUntil {player==player}; //DO NOT USE!!!
|
|
||||||
DMS_HC_Object = player; //DO NOT USE!!!
|
|
||||||
publicVariableServer "DMS_HC_Object"; //DO NOT USE!!!
|
|
||||||
}; //DO NOT USE!!!
|
|
||||||
}; //DO NOT USE!!!
|
|
||||||
|
Loading…
Reference in New Issue
Block a user