ExAd/docs/StatsBar/installation.md
2016-08-29 00:35:59 +02:00

1.1 KiB

Installation

Remember for this plugin to work you first need to install

Client

  • Place the folder "StatsBar" into "mpmissions\exile.\ExAdClient"
  • Goto "mpmissions\exile.\ExAdClient\RscTitles.cpp" and uncomment
//#include "StatsBar\RscTitles.cpp" 
  • Goto "mpmissions\exile.\ExAdClient\CfgFunctions" and uncomment

From

        //#include "StatsBar\CfgFunctions.cpp"	 

To

        #include "StatsBar\CfgFunctions.cpp"	
  • In "config.cpp" in the mission root folder, add to the following class "CfgXM8"
class CfgXM8
{
	extraApps[] = {"ExAd_SB"};
	
	class ExAd_SB
	{
		title = "Statsbar Settings";
		controlID = 50400;					//IDC:50400 -> 50475 || These need to be unique and out of range from each other
		logo = "exile_assets\texture\ui\xm8_app_settings_ca.paa";
		onLoad = "ExAdClient\XM8\Apps\SB_Settings\onLoad.sqf";
	};
};