2015-03-10 17:05:56 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2015-08-11 19:35:13 +00:00
|
|
|
units[] = {"ACE_Wheel", "ACE_Track"};
|
2015-03-10 17:05:56 +00:00
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-03-11 14:21:35 +00:00
|
|
|
requiredAddons[] = {"ace_common","ace_interact_menu"};
|
2015-08-09 16:26:49 +00:00
|
|
|
author[] = {"commy2", "Glowbal"};
|
|
|
|
authorUrl = "https://ace3mod.com";
|
2015-03-10 17:05:56 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-03-11 09:37:30 +00:00
|
|
|
|
|
|
|
#include "CfgVehicleClasses.hpp"
|
2015-03-10 22:29:45 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-03-10 21:52:44 +00:00
|
|
|
|
2015-04-21 11:17:09 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-07-05 08:31:12 +00:00
|
|
|
#include "ACE_repair.hpp"
|
2015-08-09 15:23:32 +00:00
|
|
|
|
|
|
|
class CfgActions {
|
|
|
|
class None;
|
|
|
|
class Repair: None {
|
|
|
|
show = 0;
|
|
|
|
};
|
|
|
|
class RepairVehicle: None {
|
|
|
|
show = 0;
|
|
|
|
};
|
|
|
|
};
|