2015-03-10 22:29:45 +00:00
|
|
|
#define MACRO_REPAIRVEHICLE \
|
|
|
|
class ACE_Actions { \
|
|
|
|
class ACE_MainActions { \
|
|
|
|
class GVAR(Repair) { \
|
2015-08-09 06:54:44 +00:00
|
|
|
displayName = CSTRING(Repair); \
|
2015-08-09 15:23:32 +00:00
|
|
|
condition = "true"; \
|
|
|
|
statement = ""; \
|
2015-03-11 20:52:34 +00:00
|
|
|
runOnHover = 1; \
|
2015-03-10 22:29:45 +00:00
|
|
|
showDisabled = 0; \
|
|
|
|
priority = 2; \
|
|
|
|
icon = "\A3\ui_f\data\igui\cfg\actions\repair_ca.paa"; \
|
|
|
|
distance = 4; \
|
2015-08-31 19:22:22 +00:00
|
|
|
exceptions[] = {"isNotOnLadder"}; \
|
2015-03-10 22:29:45 +00:00
|
|
|
}; \
|
|
|
|
}; \
|
|
|
|
};
|
|
|
|
|
|
|
|
class CfgVehicles {
|
2015-04-21 11:17:09 +00:00
|
|
|
class ACE_Module;
|
|
|
|
class ACE_moduleRepairSettings: ACE_Module {
|
|
|
|
scope = 2;
|
2015-08-09 06:54:44 +00:00
|
|
|
displayName = CSTRING(moduleName);
|
2015-08-18 03:26:55 +00:00
|
|
|
icon = QUOTE(PATHTOF(ui\Icon_Module_Repair_ca.paa));
|
|
|
|
category = "ACE_Logistics";
|
2015-08-16 18:34:02 +00:00
|
|
|
function = QFUNC(moduleRepairSettings);
|
2015-04-21 11:17:09 +00:00
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
2015-08-09 06:54:44 +00:00
|
|
|
author = ECSTRING(Common,ACETeam);
|
2015-04-21 11:17:09 +00:00
|
|
|
class Arguments {
|
|
|
|
class engineerSetting_Repair {
|
2015-08-09 06:54:44 +00:00
|
|
|
displayName = CSTRING(enginerSetting_Repair_name);
|
|
|
|
description = CSTRING(enginerSetting_Repair_description);
|
2015-04-21 11:17:09 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
2015-08-09 06:54:44 +00:00
|
|
|
class anyone { name = CSTRING(engineerSetting_anyone); value = 0; };
|
|
|
|
class Engineer { name = CSTRING(engineerSetting_EngineerOnly); value = 1; default = 1; };
|
|
|
|
class Special { name = CSTRING(engineerSetting_RepairSpecialistOnly); value = 2; };
|
2015-04-21 11:17:09 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class engineerSetting_Wheel {
|
2015-08-09 06:54:44 +00:00
|
|
|
displayName = CSTRING(enginerSetting_Wheel_name);
|
|
|
|
description = CSTRING(enginerSetting_Wheel_description);
|
2015-04-21 11:17:09 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
2015-08-09 06:54:44 +00:00
|
|
|
class anyone { name = CSTRING(engineerSetting_anyone); value = 0; default = 1; };
|
|
|
|
class Engineer { name = CSTRING(engineerSetting_EngineerOnly); value = 1; };
|
|
|
|
class Special { name = CSTRING(engineerSetting_RepairSpecialistOnly); value = 2; };
|
2015-04-21 11:17:09 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class repairDamageThreshold {
|
2015-08-09 06:54:44 +00:00
|
|
|
displayName = CSTRING(repairDamageThreshold_name);
|
|
|
|
description = CSTRING(repairDamageThreshold_description);
|
2015-04-21 11:17:09 +00:00
|
|
|
typeName = "NUMBER";
|
2015-08-09 16:08:53 +00:00
|
|
|
defaultValue = 0.6;
|
2015-04-21 11:17:09 +00:00
|
|
|
};
|
|
|
|
class repairDamageThreshold_Engineer {
|
2015-08-09 06:54:44 +00:00
|
|
|
displayName = CSTRING(repairDamageThreshold_Engineer_name);
|
|
|
|
description = CSTRING(repairDamageThreshold_Engineer_description);
|
2015-04-21 11:17:09 +00:00
|
|
|
typeName = "NUMBER";
|
2015-08-09 16:08:53 +00:00
|
|
|
defaultValue = 0.4;
|
2015-04-21 11:17:09 +00:00
|
|
|
};
|
|
|
|
class consumeItem_ToolKit {
|
2015-08-09 06:54:44 +00:00
|
|
|
displayName = CSTRING(consumeItem_ToolKit_name);
|
|
|
|
description = CSTRING(consumeItem_ToolKit_description);
|
2015-04-21 11:17:09 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
2015-08-09 06:54:44 +00:00
|
|
|
class keep { name = ECSTRING(common,No); value = 0; default = 1; };
|
|
|
|
class remove { name = ECSTRING(common,Yes); value = 1; };
|
2015-04-21 11:17:09 +00:00
|
|
|
};
|
|
|
|
};
|
2015-08-14 18:49:51 +00:00
|
|
|
class fullRepairLocation {
|
|
|
|
displayName = CSTRING(fullRepairLocation);
|
|
|
|
description = CSTRING(fullRepairLocation_description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class anywhere { name = CSTRING(useAnywhere); value = 0; };
|
|
|
|
class vehicle { name = CSTRING(repairVehicleOnly); value = 1; };
|
|
|
|
class facility { name = CSTRING(repairFacilityOnly); value = 2; default = 1; };
|
|
|
|
class vehicleAndFacility { name = CSTRING(vehicleAndFacility); value = 3; };
|
|
|
|
class disabled { name = ECSTRING(common,Disabled); value = 4;};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class engineerSetting_fullRepair {
|
|
|
|
displayName = CSTRING(engineerSetting_fullRepair_name);
|
|
|
|
description = CSTRING(engineerSetting_fullRepair_description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class anyone { name = CSTRING(engineerSetting_anyone); value = 0; };
|
|
|
|
class Engineer { name = CSTRING(engineerSetting_EngineerOnly); value = 1; };
|
|
|
|
class Special { name = CSTRING(engineerSetting_RepairSpecialistOnly); value = 2; default = 1;};
|
|
|
|
};
|
|
|
|
};
|
2015-08-18 21:41:25 +00:00
|
|
|
class addSpareParts {
|
|
|
|
displayName = CSTRING(addSpareParts_name);
|
|
|
|
description = CSTRING(addSpareParts_description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-09-15 14:54:55 +00:00
|
|
|
class wheelRepairRequiredItems {
|
|
|
|
displayName = CSTRING(wheelRepairRequiredItems_name);
|
|
|
|
description = CSTRING(wheelRepairRequiredItems_description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class None { name = "None"; value = 0; default = 1;};
|
|
|
|
class ToolKit { name = "ToolKit"; value = 1; };
|
|
|
|
};
|
|
|
|
};
|
2015-04-21 11:17:09 +00:00
|
|
|
};
|
|
|
|
class ModuleDescription {
|
2015-08-09 06:54:44 +00:00
|
|
|
description = CSTRING(moduleDescription);
|
2015-04-21 11:17:09 +00:00
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-14 18:49:51 +00:00
|
|
|
class Module_F;
|
|
|
|
class ACE_moduleAssignEngineerRoles: Module_F {
|
|
|
|
scope = 2;
|
|
|
|
displayName = CSTRING(AssignEngineerRole_Module_DisplayName);
|
|
|
|
icon = QUOTE(PATHTOF(ui\Icon_Module_Repair_ca.paa));
|
2015-08-18 03:26:55 +00:00
|
|
|
category = "ACE_Logistics";
|
2015-08-16 18:34:02 +00:00
|
|
|
function = QFUNC(moduleAssignEngineer);
|
2015-08-14 18:49:51 +00:00
|
|
|
functionPriority = 10;
|
|
|
|
isGlobal = 2;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
isDisposable = 0;
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
class Arguments {
|
|
|
|
class EnableList {
|
|
|
|
displayName = CSTRING(AssignEngineerRole_EnableList_DisplayName);
|
|
|
|
description = CSTRING(AssignEngineerRole_EnableList_Description);
|
|
|
|
defaultValue = "";
|
|
|
|
typeName = "STRING";
|
|
|
|
};
|
|
|
|
class role {
|
|
|
|
displayName = CSTRING(AssignEngineerRole_role_DisplayName);
|
|
|
|
description = CSTRING(AssignEngineerRole_role_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class none {
|
|
|
|
name = CSTRING(AssignEngineerRole_role_none);
|
|
|
|
value = 0;
|
|
|
|
};
|
|
|
|
class medic {
|
|
|
|
name = CSTRING(AssignEngineerRole_role_engineer);
|
|
|
|
value = 1;
|
|
|
|
default = 1;
|
|
|
|
};
|
|
|
|
class doctor {
|
|
|
|
name = CSTRING(AssignEngineerRole_role_specialist);
|
|
|
|
value = 2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
|
|
|
description = CSTRING(AssignEngineerRole_Module_Description);
|
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
2015-08-15 13:49:41 +00:00
|
|
|
class ACE_moduleAssignRepairVehicle: Module_F {
|
|
|
|
scope = 2;
|
|
|
|
displayName = CSTRING(AssignRepairVehicle_Module_DisplayName);
|
|
|
|
icon = QUOTE(PATHTOF(ui\Icon_Module_Repair_ca.paa));
|
2015-08-18 03:26:55 +00:00
|
|
|
category = "ACE_Logistics";
|
2015-08-16 18:34:02 +00:00
|
|
|
function = QFUNC(moduleAssignRepairVehicle);
|
2015-08-15 13:49:41 +00:00
|
|
|
functionPriority = 10;
|
|
|
|
isGlobal = 2;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
isDisposable = 0;
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
class Arguments {
|
|
|
|
class EnableList {
|
|
|
|
displayName = CSTRING(AssignRepairVehicle_EnableList_DisplayName);
|
|
|
|
description = CSTRING(AssignRepairVehicle_EnableList_Description);
|
|
|
|
defaultValue = "";
|
|
|
|
typeName = "STRING";
|
|
|
|
};
|
|
|
|
class role {
|
|
|
|
displayName = CSTRING(AssignRepairVehicle_role_DisplayName);
|
|
|
|
description = CSTRING(AssignRepairVehicle_role_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class none {
|
|
|
|
name = ECSTRING(common,No);
|
|
|
|
value = 0;
|
|
|
|
};
|
|
|
|
class isVehicle {
|
|
|
|
name = ECSTRING(common,Yes);
|
|
|
|
value = 1;
|
|
|
|
default = 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
|
|
|
description = CSTRING(AssignRepairVehicle_Module_Description);
|
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ACE_moduleAssignRepairFacility: ACE_moduleAssignRepairVehicle {
|
|
|
|
displayName = CSTRING(AssignRepairFacility_Module_DisplayName);
|
2015-08-16 18:34:02 +00:00
|
|
|
function = QFUNC(moduleAssignRepairFacility);
|
2015-08-15 13:49:41 +00:00
|
|
|
class Arguments {
|
|
|
|
class EnableList {
|
|
|
|
displayName = CSTRING(AssignRepairFacility_EnableList_DisplayName);
|
|
|
|
description = CSTRING(AssignRepairFacility_EnableList_Description);
|
|
|
|
defaultValue = "";
|
|
|
|
typeName = "STRING";
|
|
|
|
};
|
|
|
|
class role {
|
|
|
|
displayName = CSTRING(AssignRepairFacility_role_DisplayName);
|
|
|
|
description = CSTRING(AssignRepairFacility_role_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
class values {
|
|
|
|
class none {
|
|
|
|
name = ECSTRING(common,No);
|
|
|
|
value = 0;
|
|
|
|
};
|
|
|
|
class isFacility {
|
|
|
|
name = ECSTRING(common,Yes);
|
|
|
|
value = 1;
|
|
|
|
default = 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
|
|
|
description = CSTRING(AssignRepairFacility_Module_Description);
|
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
2015-08-18 21:41:25 +00:00
|
|
|
class ACE_moduleAddSpareParts: Module_F {
|
|
|
|
scope = 2;
|
|
|
|
displayName = CSTRING(AddSpareParts_Module_DisplayName);
|
|
|
|
icon = QUOTE(PATHTOF(ui\Icon_Module_Repair_ca.paa));
|
2015-08-23 17:54:55 +00:00
|
|
|
category = "ACE_Logistics";
|
2015-08-18 21:41:25 +00:00
|
|
|
function = QFUNC(moduleAddSpareParts);
|
|
|
|
functionPriority = 10;
|
|
|
|
isGlobal = 0;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
isDisposable = 0;
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
class Arguments {
|
|
|
|
class List {
|
|
|
|
displayName = CSTRING(AddSpareParts_List_DisplayName);
|
|
|
|
description = CSTRING(AddSpareParts_List_Description);
|
|
|
|
defaultValue = "";
|
|
|
|
typeName = "STRING";
|
|
|
|
};
|
|
|
|
class Part {
|
|
|
|
displayName = CSTRING(AddSpareParts_Part_DisplayName);
|
|
|
|
description = CSTRING(AddSpareParts_Part_Description);
|
|
|
|
typeName = "STRING";
|
|
|
|
class values {
|
|
|
|
class Wheel {
|
|
|
|
name = CSTRING(SpareWheel);
|
|
|
|
value = "ACE_Wheel";
|
|
|
|
default = 1;
|
|
|
|
};
|
|
|
|
class Track {
|
|
|
|
name = CSTRING(SpareTrack);
|
|
|
|
value = "ACE_Track";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class Amount {
|
|
|
|
displayName = CSTRING(AddSpareParts_Amount_DisplayName);
|
|
|
|
description = CSTRING(AddSpareParts_Amount_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
|
|
|
description = CSTRING(AddSpareParts_Module_Description);
|
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
2015-08-14 18:49:51 +00:00
|
|
|
|
|
|
|
|
2015-03-10 22:29:45 +00:00
|
|
|
class LandVehicle;
|
|
|
|
class Car: LandVehicle {
|
|
|
|
MACRO_REPAIRVEHICLE
|
|
|
|
};
|
|
|
|
|
|
|
|
class Tank: LandVehicle {
|
|
|
|
MACRO_REPAIRVEHICLE
|
|
|
|
};
|
|
|
|
|
|
|
|
class Air;
|
|
|
|
class Helicopter: Air {
|
|
|
|
MACRO_REPAIRVEHICLE
|
|
|
|
};
|
|
|
|
|
|
|
|
class Plane: Air {
|
|
|
|
MACRO_REPAIRVEHICLE
|
|
|
|
};
|
|
|
|
|
|
|
|
class Ship;
|
|
|
|
class Ship_F: Ship {
|
|
|
|
MACRO_REPAIRVEHICLE
|
|
|
|
};
|
2015-03-11 09:37:30 +00:00
|
|
|
|
2015-03-29 01:35:55 +00:00
|
|
|
class thingX;
|
|
|
|
class ACE_RepairItem_Base: thingX {
|
|
|
|
XEH_ENABLED;
|
2015-03-11 09:37:30 +00:00
|
|
|
icon = "iconObject_circle";
|
|
|
|
mapSize = 0.7;
|
|
|
|
accuracy = 0.2;
|
2015-08-18 03:26:55 +00:00
|
|
|
vehicleClass = "ACE_Logistics_Items";
|
2015-03-11 09:37:30 +00:00
|
|
|
destrType = "DesturctNo";
|
|
|
|
};
|
|
|
|
|
|
|
|
class ACE_Track: ACE_RepairItem_Base {
|
2015-08-16 14:45:46 +00:00
|
|
|
EGVAR(cargo,size) = 2;
|
|
|
|
EGVAR(cargo,canLoad) = 1;
|
2015-03-11 09:37:30 +00:00
|
|
|
author = "Hawkins";
|
2015-08-09 20:44:39 +00:00
|
|
|
scope = 2;
|
|
|
|
model = QUOTE(PATHTOF(data\ace_track.p3d));
|
2015-08-18 03:26:55 +00:00
|
|
|
displayName = CSTRING(SpareTrack);
|
2015-03-11 09:37:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ACE_Wheel: ACE_RepairItem_Base {
|
2015-08-16 14:45:46 +00:00
|
|
|
EGVAR(cargo,size) = 1;
|
|
|
|
EGVAR(cargo,canLoad) = 1;
|
2015-03-11 09:37:30 +00:00
|
|
|
author = "Hawkins";
|
|
|
|
scope = 2;
|
2015-08-09 20:44:39 +00:00
|
|
|
model = QUOTE(PATHTOF(data\ace_wheel.p3d));
|
2015-08-18 03:26:55 +00:00
|
|
|
displayName = CSTRING(SpareWheel);
|
2015-03-11 09:37:30 +00:00
|
|
|
picture = QUOTE(PATHTOF(ui\tire_ca.paa));
|
|
|
|
};
|
2015-04-25 08:17:18 +00:00
|
|
|
|
|
|
|
// disable vanilla repair
|
|
|
|
// "getNumber (_x >> ""transportRepair"") > 0" configClasses (configFile >> "CfgVehicles")
|
|
|
|
|
|
|
|
class Slingload_01_Base_F;
|
|
|
|
class B_Slingload_01_Repair_F: Slingload_01_Base_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
2015-08-24 02:17:24 +00:00
|
|
|
class Helicopter_Base_H;
|
|
|
|
class Heli_Transport_04_base_F: Helicopter_Base_H {
|
2015-08-24 18:03:11 +00:00
|
|
|
GVAR(hitpointGroups[]) = { {"HitEngine", {"HitEngine1", "HitEngine2"}}, {"Glass_1_hitpoint", {"Glass_2_hitpoint", "Glass_3_hitpoint", "Glass_4_hitpoint", "Glass_5_hitpoint", "Glass_6_hitpoint", "Glass_7_hitpoint", "Glass_8_hitpoint", "Glass_9_hitpoint", "Glass_10_hitpoint", "Glass_11_hitpoint", "Glass_12_hitpoint", "Glass_13_hitpoint", "Glass_14_hitpoint", "Glass_15_hitpoint", "Glass_16_hitpoint", "Glass_17_hitpoint", "Glass_18_hitpoint", "Glass_19_hitpoint", "Glass_20_hitpoint"}} };
|
2015-08-24 02:17:24 +00:00
|
|
|
};
|
2015-04-25 08:17:18 +00:00
|
|
|
class O_Heli_Transport_04_repair_F: Heli_Transport_04_base_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Pod_Heli_Transport_04_base_F;
|
|
|
|
class Land_Pod_Heli_Transport_04_repair_F: Pod_Heli_Transport_04_base_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class B_APC_Tracked_01_base_F;
|
|
|
|
class B_APC_Tracked_01_CRV_F: B_APC_Tracked_01_base_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
2015-08-24 02:17:24 +00:00
|
|
|
class Car_F;
|
|
|
|
class Offroad_01_base_F: Car_F {
|
2015-08-24 18:03:11 +00:00
|
|
|
GVAR(hitpointGroups[]) = { {"HitGlass1", {"HitGlass2"}} };
|
2015-08-24 02:17:24 +00:00
|
|
|
};
|
2015-04-25 08:17:18 +00:00
|
|
|
class Offroad_01_repair_base_F: Offroad_01_base_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
2015-08-24 02:17:24 +00:00
|
|
|
class MRAP_01_base_F: Car_F {
|
2015-08-24 18:03:11 +00:00
|
|
|
GVAR(hitpointGroups[]) = { {"HitGlass1", {"HitGlass2", "HitGlass3", "HitGlass4", "HitGlass5", "HitGlass6"}} };
|
2015-08-24 02:17:24 +00:00
|
|
|
};
|
|
|
|
|
2015-04-25 08:17:18 +00:00
|
|
|
class B_Truck_01_mover_F;
|
|
|
|
class B_Truck_01_Repair_F: B_Truck_01_mover_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class B_Truck_01_fuel_F: B_Truck_01_mover_F { // the fuel hemet apparently can repair. GJ BI
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Truck_02_base_F;
|
|
|
|
class Truck_02_box_base_F: Truck_02_base_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
|
|
|
|
2015-07-03 21:14:23 +00:00
|
|
|
class Truck_02_engineeral_base_F: Truck_02_box_base_F {
|
2015-04-25 08:17:18 +00:00
|
|
|
GVAR(canRepair) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Truck_03_base_F;
|
|
|
|
class O_Truck_03_repair_F: Truck_03_base_F {
|
|
|
|
GVAR(canRepair) = 1;
|
|
|
|
transportRepair = 0;
|
|
|
|
};
|
2015-08-24 01:23:37 +00:00
|
|
|
|
|
|
|
class Quadbike_01_base_F;
|
|
|
|
class B_Quadbike_01_F: Quadbike_01_base_F {
|
2015-08-24 16:17:56 +00:00
|
|
|
GVAR(hitpointPositions[]) = { {"HitEngine", {0, 0.5, -0.7}}, {"HitFuel", {0, 0, -0.5}} };
|
2015-08-24 01:23:37 +00:00
|
|
|
};
|
2015-03-10 22:29:45 +00:00
|
|
|
};
|