Merge pull request #2 from clarkycal/master

Master Fix Notifications and Readme updates
This commit is contained in:
Beowulfv 2017-02-10 19:39:18 -05:00 committed by GitHub
commit 8f900a14f9
2 changed files with 22 additions and 2 deletions

View File

@ -47,7 +47,7 @@ fnc_markerOn = {
};
}
forEach (allMissionObjects "Exile_Construction_Flag_Static");
["Success",["Base Markers toggled on."]] call ExileClient_gui_toaster_addTemplateToast;
["SuccessTitleAndText",["Base Markers toggled on."]] call ExileClient_gui_toaster_addTemplateToast;
};
fnc_markerOff = {
@ -65,5 +65,5 @@ fnc_markerOff = {
};
}
forEach (allMissionObjects "Exile_Construction_Flag_Static");
["Whoops",["Base Markers toggled off."]] call ExileClient_gui_toaster_addTemplateToast;
["ErrorTitleAndText",["Base Markers toggled off."]] call ExileClient_gui_toaster_addTemplateToast;
};

View File

@ -1,2 +1,22 @@
# BaseMarkers_ExAd
BaseMarkers_ExAd
# Installation
Add BaseMarker folder to your ExAd XM8 Apps folder
Exile.Mission > ExAdClient > XM8 > Apps > Place_Folder
Open your config.cpp file
Locate class CfgXM8
Add "BaseMarker" to the extraApps line
Add the folowing line in the CfgXM8 class
class BaseMarker
{
controlID = 50500;
title = "Base Marker";
logo = "ExAdClient\XM8\Apps\BaseMarker\BaseMarker.paa";
onLoad = "ExAdClient\XM8\Apps\BaseMarker\onLoad.sqf";
};
You're Done!