This commit is contained in:
[VB]AWOL
2013-12-03 14:23:34 -06:00
3 changed files with 17 additions and 5 deletions

View File

@@ -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
@@ -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%.

View File

@@ -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,11 +142,12 @@ 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;
player reveal _object;
cutText [(localize "STR_EPOCH_VEHUP_SUCCESS"), "PLAIN DOWN"];
} else {

View File

@@ -5846,6 +5846,16 @@
<French>Guide d'installation du réservoir.</French>
<!-- <Czech></Czech> -->
</Key>
<Key ID="STR_EPOCH_VEHUP_SUCCESS">
<Original>Vehicle Upgrade Successful./Original>
<English>Vehicle Upgrade Successful.</English>
<German></German>
<Russian></Russian>
<!-- <Spanish></Spanish> -->
<Dutch></Dutch>
<French></French>
<!-- <Czech></Czech> -->
</Key>
<Key ID="R3F_VERSION_WEIGHTED">
<Original>1.04</Original>
<English>1.04</English>