From 7287d0353975597200e1ec99aadf1d88cffe3cd9 Mon Sep 17 00:00:00 2001 From: HARLAN Date: Tue, 3 Dec 2013 14:11:56 -0500 Subject: [PATCH 1/5] #835 vehicle upgrade wipes cargo --- SQF/dayz_code/compile/player_upgradeVehicle.sqf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_code/compile/player_upgradeVehicle.sqf b/SQF/dayz_code/compile/player_upgradeVehicle.sqf index b87c62184..65d2139e1 100644 --- a/SQF/dayz_code/compile/player_upgradeVehicle.sqf +++ b/SQF/dayz_code/compile/player_upgradeVehicle.sqf @@ -124,7 +124,7 @@ if (_IsNearVehicle >= 1) then { _objWpnQty = _weapons select 1; _countr = 0; { - _holder addweaponcargoGlobal [_x,(_objWpnQty select _countr)]; + _holder addWeaponCargoGlobal [_x,(_objWpnQty select _countr)]; _countr = _countr + 1; } forEach _objWpnTypes; @@ -133,7 +133,7 @@ if (_IsNearVehicle >= 1) then { _objWpnQty = _magazines select 1; _countr = 0; { - _holder addmagazinecargoGlobal [_x,(_objWpnQty select _countr)]; + _holder addMagazineCargoGlobal [_x,(_objWpnQty select _countr)]; _countr = _countr + 1; } forEach _objWpnTypes; @@ -142,7 +142,7 @@ if (_IsNearVehicle >= 1) then { _objWpnQty = _backpacks select 1; _countr = 0; { - _holder addbackpackcargoGlobal [_x,(_objWpnQty select _countr)]; + _holder addBackpackCargoGlobal [_x,(_objWpnQty select _countr)]; _countr = _countr + 1; } forEach _objWpnTypes; @@ -168,4 +168,4 @@ if (_IsNearVehicle >= 1) then { cutText [(localize "STR_EPOCH_PLAYER_27"), "PLAIN DOWN"]; }; -DZE_ActionInProgress = false; \ No newline at end of file +DZE_ActionInProgress = false; From 7c311d3c33e17d2a181d5ad7fc49012020cd2ff2 Mon Sep 17 00:00:00 2001 From: HARLAN Date: Tue, 3 Dec 2013 14:19:40 -0500 Subject: [PATCH 2/5] #835 adding success message to good upgrade --- SQF/dayz_epoch_b/stringtable.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 2fea5ee94..06de48dde 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -5846,6 +5846,16 @@ Guide d'installation du réservoir. + + Vehicle Upgrade Successful./Original> + Vehicle Upgrade Successful. + + + + + + + 1.04 1.04 From 17fa72be9676a9e937c1bdc621edc4439f4ac87c Mon Sep 17 00:00:00 2001 From: HARLAN Date: Tue, 3 Dec 2013 14:19:54 -0500 Subject: [PATCH 3/5] #835 adding success message to good upgrade --- SQF/dayz_code/compile/player_upgradeVehicle.sqf | 1 + 1 file changed, 1 insertion(+) diff --git a/SQF/dayz_code/compile/player_upgradeVehicle.sqf b/SQF/dayz_code/compile/player_upgradeVehicle.sqf index 65d2139e1..c2f8c51a0 100644 --- a/SQF/dayz_code/compile/player_upgradeVehicle.sqf +++ b/SQF/dayz_code/compile/player_upgradeVehicle.sqf @@ -147,6 +147,7 @@ if (_IsNearVehicle >= 1) then { } forEach _objWpnTypes; player reveal _object; + cutText [(localize "STR_EPOCH_VEHUP_SUCCESS"), "PLAIN DOWN"]; } else { From 0df84b8fdad409b089b9a3b37ed3975feb5fe87d Mon Sep 17 00:00:00 2001 From: Axles Date: Tue, 3 Dec 2013 11:39:18 -0800 Subject: [PATCH 4/5] Update ROLLING CHANGE LOG 1.0.3.txt --- ROLLING CHANGE LOG 1.0.3.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ROLLING CHANGE LOG 1.0.3.txt b/ROLLING CHANGE LOG 1.0.3.txt index ae88581e7..ccbd32cc1 100644 --- a/ROLLING CHANGE LOG 1.0.3.txt +++ b/ROLLING CHANGE LOG 1.0.3.txt @@ -36,7 +36,7 @@ * [ADDED] Extra security features. @facoptere * [ADDED] Owner can now remove modular parts (walls, etc) without having to destroy them. NOTE: nothing is refunded/no rubble. @dayz10k * [ADDED] Unlocking a vehicle should now show you which key was used (no more guessing game!) @vbawol @dayz10k -* [ADDED] Swinging melee weapons and cracking locks (multiple attempts) will trigger hunger/thirst. @vbawol +* [ADDED] Swinging melee weapons will cause your food/drink to drop faster than normal. Attepting to crack locks over time will cause your food/drink to drop as well. @vbawol * [ADDED] New building supplies (mortar, cinder, wood packs) to Wholesalers @dayz10k * [ADDED] Area maintenance of bases @vos (Axe Cop) @dayz10k From 6e0d8724dcec08a79b48d59016c45c1416591dc7 Mon Sep 17 00:00:00 2001 From: vbawol Date: Tue, 3 Dec 2013 13:58:06 -0600 Subject: [PATCH 5/5] Update ROLLING CHANGE LOG 1.0.3.txt --- ROLLING CHANGE LOG 1.0.3.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/ROLLING CHANGE LOG 1.0.3.txt b/ROLLING CHANGE LOG 1.0.3.txt index ccbd32cc1..6596da3e8 100644 --- a/ROLLING CHANGE LOG 1.0.3.txt +++ b/ROLLING CHANGE LOG 1.0.3.txt @@ -63,6 +63,7 @@ * [FIXED] Case sensitivity issues with last versions SQL update calls. * [FIXED] Recent Murders on the Murder Board in trader cities now works properly. @vbawol +* [CHANGED] Metals can now be converted from 10oz to 1oz without tools or the need for a fire. @vbawol * [CHANGED] Mission name and descriptions now conform to template. @dayz10k * [CHANGED] Increased armor levels on wooded modular base building objects by 300%. * [CHANGED] Increased armor levels on cinder and metal modular base building objects by 20%.