Skip to content

Commit

Permalink
Cull large builder boxes because they don't work yet (#3139)
Browse files Browse the repository at this point in the history
The very large builder boxes don't fit in either width or weight for a lot of vehicles that they'll load into. Can be fixed later, but not in 3.5. Also the gameplay need for them is questionable: We probably don't want people building or repairing that much.

Buffed the "large" box to 1500 as a placeholder.
  • Loading branch information
jaj22 authored Feb 10, 2024
1 parent 1df0da1 commit a0c1714
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
13 changes: 2 additions & 11 deletions A3A/addons/core/Stringtable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14218,17 +14218,8 @@
<Turkish>Cephane İstasyonu</Turkish>
<Chinesesimp>弹药站</Chinesesimp>
</Key>
<Key ID="STR_A3A_Utility_Items_Name_buildboxcolossal">
<Original>Colossal construction kit</Original>
<Korean>거대 건설 도구</Korean>
</Key>
<Key ID="STR_A3A_Utility_Items_Name_buildboxenormous">
<Original>Enormous construction kit</Original>
<Korean>특대형 건설 도구</Korean>
</Key>
<Key ID="STR_A3A_Utility_Items_Name_buildboxextralarge">
<Original>Extra Large construction kit</Original>
<Korean>초대형 건설 도구</Korean>
<Key ID="STR_A3A_Utility_Items_Name_buildboxmedium">
<Original>Medium construction kit</Original>
</Key>
<Key ID="STR_A3A_Utility_Items_Name_buildboxlarge">
<Original>Large construction kit</Original>
Expand Down
8 changes: 4 additions & 4 deletions A3A/addons/core/functions/init/fn_initUtilityItems.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ private _items = [
[_repairStation#0, _repairStation#1, "repairstation", "repair", ["cmmdr", "place", "move", "rotate", "pack", "save"]],
[FactionGet(reb,"vehicleLightSource"), 25, "light", "", ["move"]], // note: If we do want this saved, need to switch saveLoop to nearObjects
["Land_PlasticCase_01_medium_F", 100, "buildboxsmall", "", ["place", "move", "build"]],
["Land_PlasticCase_01_large_F", 500, "buildboxlarge", "", ["place", "move", "build"]],
["Land_WoodenCrate_01_F", 1000, "buildboxextralarge", "", ["place", "move", "build"]],
["Land_WoodenCrate_01_stack_x5_F", 5000, "buildboxcolossal", "", ["place", "build", "hugebuild"]],
["Land_Cargo10_cyan_F", 10000, "buildboxenormous", "", ["place", "build", "hugebuild"]]
["Land_PlasticCase_01_large_F", 500, "buildboxmedium", "", ["place", "move", "build"]],
["Land_WoodenCrate_01_F", 1500, "buildboxlarge", "", ["place", "move", "build"]]
// ["Land_WoodenCrate_01_stack_x5_F", 5000, "buildboxcolossal", "", ["place", "build", "hugebuild"]],
// ["Land_Cargo10_cyan_F", 10000, "buildboxenormous", "", ["place", "build", "hugebuild"]]

];

Expand Down

0 comments on commit a0c1714

Please sign in to comment.