Cargo/Dragging - Add Flexible Fuel Tanks cargo/dragging (#8604)

* Add flexible fueltanks cargo/dragging

* Use proper macros in cargo

* Enable carrying
This commit is contained in:
Dedmen Miller 2021-10-26 01:26:58 +02:00 committed by GitHub
parent b36dac75bf
commit 2ff27d86fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -428,6 +428,12 @@ class CfgVehicles {
GVAR(canLoad) = 1;
};
// Flexible Fuel tanks, 300L
class FlexibleTank_base_F: ThingX {
GVAR(size) = 3;
GVAR(canLoad) = 1;
};
// objects
class RoadCone_F: ThingX {
GVAR(size) = 1;

View File

@ -247,6 +247,15 @@ class CfgVehicles {
GVAR(dragPosition)[] = {0,0.7,0};
};
// 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};
};
// some terrain objects
class Land_CampingTable_F: ThingX {