mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-07-03 07:01:56 +03:00
Update scripts.txt exceptions
- Removed some unneeded exceptions - Moved tree chop PVEH to server compile only so client does not need setdamage exception - Replaced "showCommandingMenu" filter with stricter "menu" filter - Renamed two files with no changes for easier filtering of "menu" Vanilla commits: https://github.com/DayZMod/DayZ/commit/1d639b557b1b2a57399c113184e17992d678ef7b https://github.com/DayZMod/DayZ/commit/3a29242537439b866388aeeb63574692d6e9677e https://github.com/DayZMod/Battleye-Filters/commit/5cdf249ea979649246730e7e823a6d5f976d4157
This commit is contained in:
@@ -167,7 +167,7 @@ if (isNil "keyboard_keys") then {
|
||||
_journal = {
|
||||
if (!dayz_isSwimming and !dialog) then {
|
||||
[player,4,true,(getPosATL player)] call player_alertZombies;
|
||||
createDialog "horde_journal_front_cover";
|
||||
createDialog 'horde_journal_front_cover';
|
||||
};
|
||||
_handled = true;
|
||||
};
|
||||
|
||||
@@ -611,9 +611,9 @@ if (!isDedicated) then {
|
||||
dayz_originalPlayer = player;
|
||||
|
||||
// database trader menu
|
||||
if (!DZE_ConfigTrader) then {call compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_traderMenuHive.sqf";};
|
||||
if (!DZE_ConfigTrader) then {call compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_hiveTrading.sqf";};
|
||||
// recent murders menu
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_murderMenu.sqf";
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_murderBoard.sqf";
|
||||
};
|
||||
|
||||
//Both
|
||||
|
||||
@@ -158,21 +158,6 @@ if (isServer) then {
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
"PVDZ_objgather_Knockdown" addPublicVariableEventHandler {
|
||||
_tree = (_this select 1) select 0;
|
||||
_player = (_this select 1) select 1;
|
||||
_dis = _player distance _tree;
|
||||
_name = if (alive _player) then {name _player} else {"DeadPlayer"};
|
||||
_uid = getPlayerUID _player;
|
||||
_treeModel = _tree call fn_getModelName;
|
||||
|
||||
if ((_dis < 30) && (_treeModel in dayz_trees) && (_uid != "")) then {
|
||||
_tree setDamage 1;
|
||||
dayz_choppedTrees set [count dayz_choppedTrees,_tree];
|
||||
diag_log format["Server setDamage on tree %1 chopped down by %2(%3)",_treeModel,_name,_uid];
|
||||
};
|
||||
};
|
||||
|
||||
"PVDZ_serverStoreVar" addPublicVariableEventHandler {
|
||||
_obj = (_this select 1) select 0;
|
||||
|
||||
@@ -330,8 +330,6 @@ while {1 == 1} do {
|
||||
player setVariable["startcombattimer", 0, false];
|
||||
};
|
||||
}; */
|
||||
//setGroupIconsVisible [false,false];
|
||||
//clearGroupIcons group player;
|
||||
|
||||
uiSleep 2;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user