0.3.8.0421

This commit is contained in:
vbawol 2016-04-12 08:48:26 -05:00
parent a10142907f
commit 6d987836ad
33 changed files with 24 additions and 6 deletions

View File

@ -42,3 +42,9 @@
[Info] epochAH.hpp updated "antihack_checkFiles" for new file paths.
[Info] Some AI Scripts Mods may not work with disableRemoteSensors enabled. You can disable with "disableRemoteSensors = false;" in CfgEpochClient.
[Info] Removed old .bikey and added new one for 0380.
Build: 421
[Fixed] Incorrectly enabled CUP vehicles and weapons support if only Core and Maps where enabled.
[Fixed] removeExec Battleye kick fixed.
[Fixed] Player getting stuck waiting for inventory to load.
[Fixed] Delete base object if over limit.

View File

@ -37,7 +37,9 @@ if (_item == "") exitWith{ EPOCH_target = objNull; };
if (EPOCH_playerEnergy <= 0) exitWith{
["<t size = '1.6' color = '#99ffffff'>Need Energy</t>", 5] call Epoch_dynamicText;
};
if !("" call EPOCH_isBuildAllowed) exitWith{};
// Remove object if not allowed
if !("" call EPOCH_isBuildAllowed) exitWith{ deleteVehicle _object };
EPOCH_simulSwap_Lock = true;
_objType = typeOf _object;

View File

@ -1 +1 @@
build=417;
build=421;

View File

@ -1 +1 @@
build=417;
build=421;

View File

@ -86,10 +86,14 @@ if (_this isEqualType []) then {
_dir = _worldspace select 0;
_location = _worldspace select 1;
diag_log format["DEBUG: _worldspace %1",_worldspace];
if (count _location == 2) then{
_location = (_location select 0) vectorAdd (_location select 1);
};
diag_log format["DEBUG: _location %1",_location];
_prevInstance = _worldspace select 2;
_medical = _arr select 1;
_server_vars = _arr select 3;
@ -135,7 +139,11 @@ if (_this isEqualType []) then {
_group = createGroup west;
};
_player setPosATL _location;
_newPlyr = _group createUnit[_class, _location, [], 0, "CAN_COLLIDE"];
diag_log format["DEBUG: _newPlyr %1 %2 %3",_newPlyr, _location, getPosATL _newPlyr];
if !(isNull _newPlyr) then {
addToRemainsCollector[_newPlyr];
@ -326,6 +334,8 @@ if (_this isEqualType []) then {
[_playerNetID, _playerUID, [_newPlyr, _vars, _currWeap, loadAbs _newPlyr, _playerGroup, _canBeRevived, _newPlyr call EPOCH_server_setPToken,_playerGroupArray]] call EPOCH_server_pushPlayer;
_newPlyr setVariable["SETUP", true, true];
diag_log format["DEBUG: _newPlyr SETUP %1",_newPlyr];
};
} else {
diag_log format["LOGIN FAILED UNIT NULL: %1 [%2|%3]", _player, _group, count allgroups];

View File

@ -1 +1 @@
build=417;
build=421;

View File

@ -1 +1 @@
build=417;
build=421;

View File

@ -1 +1 @@
417
421