2021-07-23 14:11:57 +00:00
|
|
|
#define XEH_INHERITED class EventHandlers {class CBA_Extended_EventHandlers: CBA_Extended_EventHandlers {};}
|
2015-03-14 12:51:23 +00:00
|
|
|
|
2016-03-01 16:05:00 +00:00
|
|
|
class CBA_Extended_EventHandlers;
|
|
|
|
|
2015-03-14 12:51:23 +00:00
|
|
|
class CfgVehicles {
|
2015-03-18 12:36:22 +00:00
|
|
|
// Static weapons
|
|
|
|
class LandVehicle;
|
|
|
|
class StaticWeapon: LandVehicle {
|
|
|
|
GVAR(canCarry) = 1;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(carryPosition)[] = {0,1.2,0};
|
2015-03-18 12:36:22 +00:00
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.2,0};
|
2015-03-18 12:36:22 +00:00
|
|
|
};
|
|
|
|
|
2016-03-08 17:43:35 +00:00
|
|
|
class StaticCannon: StaticWeapon {
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
|
2022-05-02 23:54:30 +00:00
|
|
|
// Invisible Target Soldier
|
|
|
|
class TargetSoldierBase: StaticWeapon {
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
|
2015-03-18 12:36:22 +00:00
|
|
|
class StaticMortar;
|
|
|
|
class Mortar_01_base_F: StaticMortar {
|
|
|
|
GVAR(canCarry) = 1;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(carryPosition)[] = {0,1.2,0};
|
2015-03-18 12:36:22 +00:00
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.2,0};
|
2015-03-18 12:36:22 +00:00
|
|
|
};
|
|
|
|
|
2018-08-01 20:29:54 +00:00
|
|
|
// Big 1.70 and 1.84 Autonomous AA Turrets
|
2017-06-06 06:39:49 +00:00
|
|
|
class StaticMGWeapon;
|
|
|
|
class AAA_System_01_base_F: StaticMGWeapon { // Praetorian 1C (aka Phalanx CIWS)
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
class SAM_System_01_base_F: StaticMGWeapon { // Mk49 Spartan
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
class SAM_System_02_base_F: StaticMGWeapon { // Mk21 Centurion
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
2018-08-01 20:29:54 +00:00
|
|
|
class SAM_System_03_base_F: StaticMGWeapon { // MIM-145 Defender
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
class SAM_System_04_base_F: StaticMGWeapon { // S-750 Rhea
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
class B_Ship_Gun_01_base_F: StaticMGWeapon { // Mk45 Hammer
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
class B_Ship_MRLS_01_base_F: StaticMGWeapon { // Mk41 VLS
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
class Radar_System_01_base_F: StaticMGWeapon { // AN/MPQ-105 Radar
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
class Radar_System_02_base_F: StaticMGWeapon { // R-750 Cronus Radar
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
2017-06-06 06:39:49 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Ammo boxes
|
2015-03-14 12:51:23 +00:00
|
|
|
class ThingX;
|
2016-03-02 15:38:23 +00:00
|
|
|
class Items_base_F;
|
2015-03-14 12:51:23 +00:00
|
|
|
class ReammoBox_F: ThingX {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 0;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.2,0};
|
2015-03-14 12:51:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Slingload_base_F: ReammoBox_F {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 0;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 0;
|
2016-05-30 22:11:06 +00:00
|
|
|
};
|
2023-07-23 23:07:37 +00:00
|
|
|
// Remove actions from Taru Pods
|
2016-05-30 22:11:06 +00:00
|
|
|
class Pod_Heli_Transport_04_base_F: Slingload_base_F {
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
2015-03-14 12:51:23 +00:00
|
|
|
};
|
2017-06-14 13:35:17 +00:00
|
|
|
class Pod_Heli_Transport_04_crewed_base_F: StaticWeapon {
|
|
|
|
GVAR(canCarry) = 0;
|
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
2015-03-14 12:51:23 +00:00
|
|
|
|
|
|
|
class EAST_Box_Base: ReammoBox_F {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 1;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class IND_Box_Base: ReammoBox_F {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 1;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
/*class FIA_Box_Base_F: ReammoBox_F {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 1;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};*/
|
|
|
|
class NATO_Box_Base: ReammoBox_F {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 1;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
2016-07-14 01:34:06 +00:00
|
|
|
class Box_Syndicate_Ammo_F: ReammoBox_F {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Box_IED_Exp_F: ReammoBox_F {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Box_Syndicate_Wps_F: ReammoBox_F {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Box_Syndicate_WpsLaunch_F: ReammoBox_F {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Box_NATO_Equip_F: ReammoBox_F {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryDirection) = 270;
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Box_NATO_Uniforms_F: ReammoBox_F {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryDirection) = 270;
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
2015-03-14 12:51:23 +00:00
|
|
|
|
|
|
|
// Remove Larger crate dragging support.
|
|
|
|
// Would be better to allow some sort of joint push/drag functionality
|
|
|
|
// Requiring 2 units to access the larger crates and attaching them together (a crappy method of doing it)
|
|
|
|
// in order to move the bigger ones. Currently simply remove support.
|
|
|
|
// I believe these crates are currently broken (hitbox doesn't work or something) in 1.22 (2014-07-04)
|
|
|
|
class Box_East_AmmoVeh_F: EAST_Box_Base {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 0;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Box_NATO_AmmoVeh_F: NATO_Box_Base {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 0;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Box_IND_AmmoVeh_F: IND_Box_Base {
|
2015-03-17 14:42:25 +00:00
|
|
|
GVAR(canCarry) = 0;
|
2015-03-14 12:51:23 +00:00
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
};
|
2016-05-03 00:32:44 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Plastic and metal case
|
2016-03-02 15:38:23 +00:00
|
|
|
class PlasticCase_01_base_F: Items_base_F {
|
|
|
|
GVAR(canCarry) = 1;
|
2016-03-02 21:27:29 +00:00
|
|
|
GVAR(carryDirection) = 270;
|
2015-03-29 01:35:55 +00:00
|
|
|
|
2016-03-02 15:38:23 +00:00
|
|
|
GVAR(canDrag) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.2,0};
|
2016-10-29 19:37:50 +00:00
|
|
|
GVAR(dragDirection) = 270;
|
2016-03-02 15:38:23 +00:00
|
|
|
};
|
|
|
|
class MetalCase_01_base_F: Items_base_F {
|
|
|
|
GVAR(canCarry) = 1;
|
2016-03-02 21:27:29 +00:00
|
|
|
GVAR(carryDirection) = 270;
|
2016-03-02 15:38:23 +00:00
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.2,0};
|
2016-03-02 15:38:23 +00:00
|
|
|
};
|
2016-05-03 00:32:44 +00:00
|
|
|
|
2015-10-28 20:33:00 +00:00
|
|
|
// Barrier
|
2016-01-03 14:21:38 +00:00
|
|
|
class RoadCone_F: ThingX {
|
2015-10-28 20:33:00 +00:00
|
|
|
GVAR(canCarry) = 1;
|
2015-11-01 19:33:18 +00:00
|
|
|
|
2015-10-28 20:33:00 +00:00
|
|
|
GVAR(canDrag) = 1;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.2,0};
|
2015-10-28 20:33:00 +00:00
|
|
|
};
|
2015-11-01 21:38:55 +00:00
|
|
|
|
|
|
|
class RoadBarrier_F: RoadCone_F {
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(carryPosition)[] = {0,1,0.300671};
|
2015-11-01 21:38:55 +00:00
|
|
|
};
|
|
|
|
|
2016-08-13 09:33:41 +00:00
|
|
|
// Misc crates
|
|
|
|
class Constructions_base_F;
|
|
|
|
class Land_WoodenBox_F: Constructions_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2016-08-13 09:33:41 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.4,0};
|
2016-08-13 09:33:41 +00:00
|
|
|
};
|
|
|
|
class Land_WoodenCrate_01_F: ThingX {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryDirection) = 270;
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragDirection) = 90;
|
|
|
|
};
|
2017-09-07 17:45:37 +00:00
|
|
|
class Land_PaperBox_01_small_closed_base_F: Items_base_F {
|
|
|
|
GVAR(canCarry) = 1;
|
2016-08-13 09:33:41 +00:00
|
|
|
|
2017-09-07 17:45:37 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragDirection) = 90;
|
|
|
|
};
|
|
|
|
class Box_UAV_06_base_F: Items_base_F {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
2015-03-29 01:35:55 +00:00
|
|
|
class ACE_RepairItem_Base: ThingX {};
|
|
|
|
|
|
|
|
class ACE_Track: ACE_RepairItem_Base {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ACE_Wheel: ACE_RepairItem_Base {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
};
|
2015-08-22 18:00:26 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Weapons dropped from dead body
|
2023-07-10 02:49:37 +00:00
|
|
|
class WeaponHolderSimulated: ThingX {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition[]) = {0,0.5,1.3};
|
|
|
|
GVAR(carryDirection) = 0;
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// z-position floats from -1.2 to > 0
|
|
|
|
// It's OK for carrying but odd for dragging
|
|
|
|
// Needs workaround to drag correctly. Disabled ATM
|
2023-07-10 02:49:37 +00:00
|
|
|
GVAR(canDrag) = 0;
|
|
|
|
GVAR(dragPosition[]) = {0,1,0};
|
|
|
|
GVAR(dragDirection) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ReammoBox;
|
2023-07-23 23:07:37 +00:00
|
|
|
// Dropped weapons/gear
|
2023-07-10 02:49:37 +00:00
|
|
|
class WeaponHolder: ReammoBox {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition[]) = {0,0.5,1};
|
|
|
|
GVAR(carryDirection) = 0;
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition[]) = {0,1,0};
|
|
|
|
GVAR(dragDirection) = 0;
|
|
|
|
};
|
|
|
|
|
2015-08-22 18:00:26 +00:00
|
|
|
class Lamps_base_F;
|
|
|
|
class Land_PortableLight_single_F: Lamps_base_F {
|
|
|
|
GVAR(canCarry) = 1;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(carryPosition)[] = {0,1.2,0};
|
2015-08-22 18:00:26 +00:00
|
|
|
GVAR(carryDirection) = 180;
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
2016-02-28 14:18:15 +00:00
|
|
|
GVAR(dragPosition)[] = {0,1.2,0};
|
2015-08-22 18:00:26 +00:00
|
|
|
GVAR(dragDirection) = 180;
|
|
|
|
};
|
2018-02-26 18:12:21 +00:00
|
|
|
class FloatingStructure_F;
|
|
|
|
class Land_Camping_Light_F: FloatingStructure_F {
|
|
|
|
GVAR(canCarry) = 1;
|
2023-07-23 23:07:37 +00:00
|
|
|
// If y < 0.9 player gets damaged
|
2018-02-26 18:12:21 +00:00
|
|
|
GVAR(carryPosition)[] = {0,0.9,1};
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,0.7,0};
|
|
|
|
};
|
|
|
|
class Land_Camping_Light_off_F: ThingX {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.9,1};
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,0.7,0};
|
2021-07-23 14:11:57 +00:00
|
|
|
};
|
|
|
|
|
2021-10-25 23:26:58 +00:00
|
|
|
// Flexible Fuel tanks, 300L
|
|
|
|
class FlexibleTank_base_F: ThingX {
|
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.65,0};
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,1,0};
|
|
|
|
};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Some terrain objects
|
2021-07-23 14:11:57 +00:00
|
|
|
class Land_CampingTable_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,1,0.5};
|
|
|
|
};
|
|
|
|
class Land_CampingTable_small_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,1,0.5};
|
|
|
|
};
|
|
|
|
class Land_GarbageContainer_closed_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragDirection) = 180;
|
|
|
|
};
|
|
|
|
class Land_GarbageContainer_open_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragDirection) = 180;
|
|
|
|
};
|
|
|
|
class Land_Sun_chair_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryDirection) = 90;
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,1,0};
|
|
|
|
GVAR(dragDirection) = 90;
|
|
|
|
};
|
|
|
|
class Land_TablePlastic_01_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,1,0};
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Land_Tyre_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.6,1};
|
|
|
|
};
|
|
|
|
class Land_WoodenTable_large_F: ThingX {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragDirection) = 90;
|
|
|
|
};
|
|
|
|
class Land_BarrelSand_F: Items_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,1,0};
|
|
|
|
};
|
|
|
|
class Land_BarrelWater_F: Items_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,1,0};
|
|
|
|
};
|
|
|
|
class Land_Bucket_F: Items_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.6,1};
|
|
|
|
};
|
|
|
|
class Land_CanisterPlastic_F: Items_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.6,0};
|
|
|
|
};
|
|
|
|
class Land_GarbageBarrel_01_english_F: Items_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Land_MetalBarrel_F: Items_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,1,0};
|
|
|
|
};
|
|
|
|
class Land_Pallet_F: Constructions_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Land_Pallet_vertical_F: Constructions_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.6,0.6};
|
|
|
|
GVAR(carryDirection) = 180;
|
|
|
|
};
|
|
|
|
class Land_WheelCart_F: Constructions_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Land_WorkStand_F: Constructions_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,1,0};
|
|
|
|
|
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,1,0};
|
|
|
|
};
|
|
|
|
class Market_base_F;
|
|
|
|
class Land_Basket_F: Market_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.6,0.5};
|
|
|
|
};
|
|
|
|
class Land_WoodenCart_F: Market_base_F {
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Static classes need XEH
|
2021-07-23 14:11:57 +00:00
|
|
|
class NonStrategic;
|
|
|
|
class Land_Pallets_F: NonStrategic {
|
|
|
|
XEH_INHERITED;
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
};
|
|
|
|
class Camping_base_F;
|
|
|
|
class Land_CampingChair_V1_folded_F: Camping_base_F {
|
|
|
|
XEH_INHERITED;
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.6,1};
|
|
|
|
};
|
|
|
|
class Stall_base_F;
|
|
|
|
class Land_CratesPlastic_F: Stall_base_F {
|
|
|
|
XEH_INHERITED;
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canCarry) = 1;
|
|
|
|
GVAR(carryPosition)[] = {0,0.6,1};
|
|
|
|
};
|
|
|
|
class House_Small_F;
|
|
|
|
class Land_MetalBarrel_empty_F: House_Small_F {
|
|
|
|
XEH_INHERITED;
|
2021-10-12 19:36:33 +00:00
|
|
|
EGVAR(interaction,replaceTerrainObject) = 1;
|
2021-07-23 14:11:57 +00:00
|
|
|
GVAR(canDrag) = 1;
|
|
|
|
GVAR(dragPosition)[] = {0,1,0};
|
2018-02-26 18:12:21 +00:00
|
|
|
};
|
2015-03-14 12:51:23 +00:00
|
|
|
};
|