Skip to content

Commit

Permalink
fix: configs
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkIsGrim committed Jan 13, 2025
1 parent e16d4a9 commit 83f7ae4
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions addons/compat_cup_terrains/CfgVehicles.hpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
class CfgVehicles {
class House_EP1;
class Land_stand_waterl_EP1: House_EP1 {
EXGVAR(sitting,canSit) = 1;
EXGVAR(sitting,sitDirection) = 180;
EXGVAR(sitting,sitPosition)[] = {{-0.4, -0.8, -0.9}, {0.4, -0.8, -0.9}};
EXGVAR(sitting,interactPosition)[] = {{-0.4, -0.75, 0.3}, {0.4, -0.75, 0.3}};
};

class Thing_EP1;
class Land_Bench_EP1: Thing_EP1 {
EXGVAR(sitting,canSit) = 1;
Expand Down Expand Up @@ -54,6 +46,10 @@ class CfgVehicles {
};

class Thing;
class Land_Barrel_water: Thing {
EXGVAR(field_rations,waterSupply) = 160;
EXGVAR(field_rations,offset)[] = {0, 0, 0.25};
};
class FoldChair: Thing {
EXGVAR(sitting,canSit) = 1;
EXGVAR(sitting,sitDirection) = 180;
Expand Down Expand Up @@ -110,19 +106,20 @@ class CfgVehicles {
EGVAR(dragging,carryDirection) = 270;
};

class Land_stand_waterl_EP1: House_EP1 {
EXGVAR(field_rations,waterSupply) = 250;
EXGVAR(field_rations,offset)[] = {0, -0.33, 0.4};
};

class House;
class Land_pumpa: House {
EXGVAR(field_rations,waterSupply) = -10;
EXGVAR(field_rations,offset)[] = {0.3, 0, 0.68};
};

class Thing;
class Land_Barrel_water: Thing {
EXGVAR(field_rations,waterSupply) = 160;
EXGVAR(field_rations,offset)[] = {0, 0, 0.25};
class House_EP1;
class Land_stand_waterl_EP1: House_EP1 {
EXGVAR(field_rations,waterSupply) = 250;
EXGVAR(field_rations,offset)[] = {0, -0.33, 0.4};
EXGVAR(sitting,canSit) = 1;
EXGVAR(sitting,sitDirection) = 180;
EXGVAR(sitting,sitPosition)[] = {{-0.4, -0.8, -0.9}, {0.4, -0.8, -0.9}};
EXGVAR(sitting,interactPosition)[] = {{-0.4, -0.75, 0.3}, {0.4, -0.75, 0.3}};
};

};

0 comments on commit 83f7ae4

Please sign in to comment.