From a0c171466b455a7a5edd567b5313ed2899525f4f Mon Sep 17 00:00:00 2001 From: jaj22 Date: Sat, 10 Feb 2024 20:41:27 +0000 Subject: [PATCH] Cull large builder boxes because they don't work yet (#3139) 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. --- A3A/addons/core/Stringtable.xml | 13 ++----------- .../core/functions/init/fn_initUtilityItems.sqf | 8 ++++---- 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/A3A/addons/core/Stringtable.xml b/A3A/addons/core/Stringtable.xml index 00602bcaa5..db5647f260 100644 --- a/A3A/addons/core/Stringtable.xml +++ b/A3A/addons/core/Stringtable.xml @@ -14218,17 +14218,8 @@ Cephane İstasyonu 弹药站 - - Colossal construction kit - 거대 건설 도구 - - - Enormous construction kit - 특대형 건설 도구 - - - Extra Large construction kit - 초대형 건설 도구 + + Medium construction kit Large construction kit diff --git a/A3A/addons/core/functions/init/fn_initUtilityItems.sqf b/A3A/addons/core/functions/init/fn_initUtilityItems.sqf index f2a24ab0c9..e145f0b310 100644 --- a/A3A/addons/core/functions/init/fn_initUtilityItems.sqf +++ b/A3A/addons/core/functions/init/fn_initUtilityItems.sqf @@ -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"]] ];