1.8.7 Kill Messages?

default { // player hit
_unit = _x select 0;
_source = _x select 1;

in server_monitor.sqf

could i just change it to _sourceName?
 
i think the custommessage is not gonna work since u need to have a fn_remoteMessage.sqf in 1.9.0 if i am not mistaken
private "_vars";
_type = _this select 0;
_message = _this select 1;
if (count _this > 2) then {
_vars = _this select 2;
};
if (_type == "killmsgs") exitWith {
_finaltxt = (_this select 1);
_text2 = "<t align='left' size='0.5' color='#a41f00'>"+_finaltxt+"</t>";
systemchat format["%1",_finaltxt];
[_text2,[safezoneX + 0.01 * safezoneW,2.0],[safezoneY + 0.01 * safezoneH,0.3],30,0.5] spawn BIS_fnc_dynamicText;
};
if (_type == "private") exitWith {if(getPlayerUID player == (_message select 0)) then {systemChat (_message select 1);};};
if (_type == "systemChat") exitWith {systemChat _message;};
if (_type == "titleCut") exitWith {titleCut [_message,"PLAIN DOWN",3];};
if (_type == "titleText") exitWith {titleText [_message, "PLAIN DOWN"]; titleFadeOut 10;};
if (_type == "rollingMessages") exitWith {_message call dayz_rollingMessages;};
 
no success with this try:

Code:
// Extra Steps --------------------------------------------------------------
    [_newObject] spawn {
        _unit = _this select 0;

        waituntil {!isnil {_unit getVariable "attacker"}};
        _attacker = _unit getVariable "attacker";
        _attackedby = _unit getVariable "AttackedByWeapon";
        _attackdistance = _unit getVariable "AttackedFromDistance";
        //_attacker = _unit getVariable "AttackedByWeaponImg";
        _unitname = name _unit;
        if (isnil "_attackedby") then {
            _message = format["%1 killed by %2 from [%3m]", _unitname, _attacker, _attackdistance];
            RemoteMessage = _message;
        } else {
            _message = format["%1 killed by %2 with %3 from [%4m]", _unitname, _attacker, _attackedby, _attackdistance];
            RemoteMessage = _message;
        };
        diag_log format["AnonymousMessage: %1",_message];
        RemoteMessage = ["killmsgs",_message];
        publicVariable "RemoteMessage";
    };
    //END -----------------------------------------------------------------------

My log says Message is any:
2025/01/18, 19:16:59 "DeathMessage: MikeCandys was killed by michael with M4A1_HWS_GL_camo from 3m"
2025/01/18, 19:16:59 "AnonymousMessage: any"
Code:
 
You would keep the init.sqf stuff, and the RC toggle for anon status.

would need to client side the player_death.sqf and modify this one part of it.

Code:
// added above send death notice --------
_anonstat = _source getVariable "Anon";
if (isnil "_anonstat") then {
    _anonstat = false;
};
if (!_anonstat) then {
    _anonstat = false;
} else {
    _anonstat = true;
};

//Send Death Notice
diag_log format["Player_Death: Body:%1 BodyName:%2 Infected:%3 SourceName:%4 SourceWeapon:%5 Distance:%6 Method:%7",_body,dayz_playerName,_infected,_sourceName,_sourceWeapon,_distance,_method];

// ADDED _anonstat to array below --------------------------------------------------------------------------------------------------------
PVDZ_plr_Death = [dayz_characterID,0,_body,_playerID,toArray dayz_playerName,_infected,toArray _sourceName,_sourceWeapon,_distance,_method,_anonstat]; //Send name as array to avoid publicVariable value restrictions
publicVariableServer "PVDZ_plr_Death";

Then in server_playerdied.sqf

Code:
#include "\z\addons\dayz_server\compile\server_toggle_debug.hpp"

private ["_characterID","_minutes","_newObject","_playerID","_playerName","_key","_pos","_infected","_sourceName","_sourceWeapon","_distance","_message","_method","_suicide","_bodyName","_type","_anonstat"];
//[unit, weapon, muzzle, mode, ammo, magazine, projectile]

_characterID = _this select 0;
_minutes = _this select 1;
_newObject = _this select 2;
_playerID = _this select 3;
_playerName = toString (_this select 4); //Sent as array to avoid publicVariable value restrictions
_infected = _this select 5;
_sourceName = toString (_this select 6);
_sourceWeapon = _this select 7;
_distance = _this select 8;
_method = _this select 9;
_anonstat = _this select 10;

//Mark player as dead so we bypass the ghost system
dayz_died set [count dayz_died, _playerID];

_newObject setVariable ["bodyName",_playerName,true];
_pos = getPosATL _newObject;

// force to follow the terrain slope in sched_corpses.sqf
if (_pos select 2 < 0.1) then {_pos set [2,0];};
_newObject setVariable ["deathPos",_pos];

if (typeName _minutes == "STRING") then {_minutes = parseNumber _minutes;};

if (_characterID != "0") then {
    _key = format["CHILD:202:%1:%2:",_characterID,_minutes];
    //diag_log ("HIVE: WRITE: "+ str(_key));
    _key call server_hiveWrite;
};

diag_log format ["Player UID#%3 CID#%4 %1 as %5 died at %2", 
    _newObject call fa_plr2str, _pos call fa_coor2str,
    _playerID, _characterID,
    typeOf _newObject
];

if (_anonstat) then {
    _sourceName = "Anonymous";
};

// DEATH MESSAGES
_suicide = ((_sourceName == _playerName) or (_method == "suicide"));

if (_method in ["explosion","melee","shot","shothead","shotheavy","suicide"] && !(_method == "explosion" && (_suicide or _sourceName == "unknown"))) then {
    if (_suicide) then {
        _message = ["suicide",_playerName];
    } else {
        if (_sourceWeapon == "") then {_sourceWeapon = "unknown weapon";};
        _message = ["killed",_playerName,_sourceName,_sourceWeapon,_distance];
    };
} else {
    // No source name, distance or weapon needed: "%1 died from %2" str_death_%1 (see stringtable)
    // Possible methods: ["bled","combatlog","crash","crushed","dehyd","eject","fall","starve","sick","rad","runover","unknown","zombie"]
    _message = ["died",_playerName,_method];
};

if (_playerName != "unknown" or _sourceName != "unknown") then {
    _type = _message select 0;
    _bodyName = _message select 1;
    
    if (_type == "killed" && _sourceName == "AI") then {
        _message set [2, (localize "STR_PLAYER_AI")];
    };
    
    _message = switch _type do {
        case "died": {format [localize "str_player_death_died", _bodyName, localize format["str_death_%1",_message select 2]]};
        case "killed": {format [localize "str_player_death_killed", _bodyName, _message select 2, _message select 3, _message select 4]};
        case "suicide": {format [localize "str_player_death_suicide", _bodyName]};
    };
    diag_log format["DeathMessage: %1",_message];
    
};

_newObject setDamage 1;
_newObject setOwner 0;
//dead_bodyCleanup set [count dead_bodyCleanup,_newObject];

Then I think that should make it so the built in messages in 1.9.0 will say Anonymous if the attacker has it turned on.
 
You would keep the init.sqf stuff, and the RC toggle for anon status.

would need to client side the player_death.sqf and modify this one part of it.

Code:
// added above send death notice --------
_anonstat = _source getVariable "Anon";
if (isnil "_anonstat") then {
    _anonstat = false;
};
if (!_anonstat) then {
    _anonstat = false;
} else {
    _anonstat = true;
};

//Send Death Notice
diag_log format["Player_Death: Body:%1 BodyName:%2 Infected:%3 SourceName:%4 SourceWeapon:%5 Distance:%6 Method:%7",_body,dayz_playerName,_infected,_sourceName,_sourceWeapon,_distance,_method];

// ADDED _anonstat to array below --------------------------------------------------------------------------------------------------------
PVDZ_plr_Death = [dayz_characterID,0,_body,_playerID,toArray dayz_playerName,_infected,toArray _sourceName,_sourceWeapon,_distance,_method,_anonstat]; //Send name as array to avoid publicVariable value restrictions
publicVariableServer "PVDZ_plr_Death";

Then in server_playerdied.sqf

Code:
#include "\z\addons\dayz_server\compile\server_toggle_debug.hpp"

private ["_characterID","_minutes","_newObject","_playerID","_playerName","_key","_pos","_infected","_sourceName","_sourceWeapon","_distance","_message","_method","_suicide","_bodyName","_type","_anonstat"];
//[unit, weapon, muzzle, mode, ammo, magazine, projectile]

_characterID = _this select 0;
_minutes = _this select 1;
_newObject = _this select 2;
_playerID = _this select 3;
_playerName = toString (_this select 4); //Sent as array to avoid publicVariable value restrictions
_infected = _this select 5;
_sourceName = toString (_this select 6);
_sourceWeapon = _this select 7;
_distance = _this select 8;
_method = _this select 9;
_anonstat = _this select 10;

//Mark player as dead so we bypass the ghost system
dayz_died set [count dayz_died, _playerID];

_newObject setVariable ["bodyName",_playerName,true];
_pos = getPosATL _newObject;

// force to follow the terrain slope in sched_corpses.sqf
if (_pos select 2 < 0.1) then {_pos set [2,0];};
_newObject setVariable ["deathPos",_pos];

if (typeName _minutes == "STRING") then {_minutes = parseNumber _minutes;};

if (_characterID != "0") then {
    _key = format["CHILD:202:%1:%2:",_characterID,_minutes];
    //diag_log ("HIVE: WRITE: "+ str(_key));
    _key call server_hiveWrite;
};

diag_log format ["Player UID#%3 CID#%4 %1 as %5 died at %2",
    _newObject call fa_plr2str, _pos call fa_coor2str,
    _playerID, _characterID,
    typeOf _newObject
];

if (_anonstat) then {
    _sourceName = "Anonymous";
};

// DEATH MESSAGES
_suicide = ((_sourceName == _playerName) or (_method == "suicide"));

if (_method in ["explosion","melee","shot","shothead","shotheavy","suicide"] && !(_method == "explosion" && (_suicide or _sourceName == "unknown"))) then {
    if (_suicide) then {
        _message = ["suicide",_playerName];
    } else {
        if (_sourceWeapon == "") then {_sourceWeapon = "unknown weapon";};
        _message = ["killed",_playerName,_sourceName,_sourceWeapon,_distance];
    };
} else {
    // No source name, distance or weapon needed: "%1 died from %2" str_death_%1 (see stringtable)
    // Possible methods: ["bled","combatlog","crash","crushed","dehyd","eject","fall","starve","sick","rad","runover","unknown","zombie"]
    _message = ["died",_playerName,_method];
};

if (_playerName != "unknown" or _sourceName != "unknown") then {
    _type = _message select 0;
    _bodyName = _message select 1;
  
    if (_type == "killed" && _sourceName == "AI") then {
        _message set [2, (localize "STR_PLAYER_AI")];
    };
  
    _message = switch _type do {
        case "died": {format [localize "str_player_death_died", _bodyName, localize format["str_death_%1",_message select 2]]};
        case "killed": {format [localize "str_player_death_killed", _bodyName, _message select 2, _message select 3, _message select 4]};
        case "suicide": {format [localize "str_player_death_suicide", _bodyName]};
    };
    diag_log format["DeathMessage: %1",_message];
  
};

_newObject setDamage 1;
_newObject setOwner 0;
//dead_bodyCleanup set [count dead_bodyCleanup,_newObject];

Then I think that should make it so the built in messages in 1.9.0 will say Anonymous if the attacker has it turned on.
yes it worked finally thank you very much. but the first player that loggs in it says on the first time you are now not anonymous and then the other times i log in it says you are now anonymous. how could i fix that?
 
yes it worked finally thank you very much. but the first player that loggs in it says on the first time you are now not anonymous and then the other times i log in it says you are now anonymous. how could i fix that?
It should be when you login it'll check if you have the anon variable saved to your arma 2 profile via the profileNamespace. I have some pauses and alive checks so it hopefully all happens after fully loading in. If no variable is found it'll default it to false. If it is set it should pull if you had it set to false or true. Then the RC that you have should be a toggle to change the variable between true and false.

If its saying in systemchat that its toggling then it may have to do with the RC portion. Almost like its running automatically on login instead of the player running it.
 
How could I add it to dik_keys like for example if i want to use DIK_DELETE i press it it moves my mouse to the left ingame?
 
It should be when you login it'll check if you have the anon variable saved to your arma 2 profile via the profileNamespace. I have some pauses and alive checks so it hopefully all happens after fully loading in. If no variable is found it'll default it to false. If it is set it should pull if you had it set to false or true. Then the RC that you have should be a toggle to change the variable between true and false.

so when i first use the righclick option ( means that i never used the anon status)
it must say that anonstatus = true
since when i first log in and press the right click option it says:
Code:
Your name will show up in kill messages now...

once i go back to lobby and login back to the game again it will start with:

Code:
systemchat 'You will now be anonymous in kill messages.';

so i think that it is first set to true. and then it will set to false or am i wrong?

thats my rc code:

Code:
_anonstat = profileNamespace getVariable 'Anon';
if (isnil '_anonstat') then {
    player setVariable ['Anon',false,true];
};
if (player getvariable 'Anon') then {
    profileNamespace setVariable ['Anon',false];
    player setVariable ['Anon',false,true];
    systemchat 'Your name will show up in kill messages now...';
} else {
    profileNamespace setVariable ['Anon',true];
    player setVariable ['Anon',true,true];
    systemchat 'You will now be anonymous in kill messages.';
};
saveProfileNamespace;

maybe it is because of server_monitor.sqf and _anonstat is not in private section?

Code:
_anonstat = _source getVariable "Anon";
                    if (isnil "_anonstat") then {
                    _anonstat = false;
                    };
                    if (!_anonstat) then {
                    _unit setVariable ["attacker", name _source ];
                    } else {
                    _unit setVariable ["attacker", "Anonymous" ];
                    };
 
or because of the init file?
Code:
[] execVM "custom\noSideVoice.sqf";
execVM "dzgm\init.sqf";
[] spawn {
waituntil {alive player};
sleep 5;
    _anonstat = profileNamespace getVariable "Anon";
    if (isnil "_anonstat") then {
        player setVariable ["Anon",false,true];
        profileNamespace setVariable ["Anon",false];
        saveProfileNamespace;
    } else {
        if (_anonstat) then {
            player setVariable ["Anon",true,true];
        } else {
            player setVariable ["Anon",false,true];
        };
    };
};
 
or because of the init file?
Code:
[] execVM "custom\noSideVoice.sqf";
execVM "dzgm\init.sqf";
[] spawn {
waituntil {alive player};
sleep 5;
    _anonstat = profileNamespace getVariable "Anon";
    if (isnil "_anonstat") then {
        player setVariable ["Anon",false,true];
        profileNamespace setVariable ["Anon",false];
        saveProfileNamespace;
    } else {
        if (_anonstat) then {
            player setVariable ["Anon",true,true];
        } else {
            player setVariable ["Anon",false,true];
        };
    };
};
The server monitor portion you can probably remove now since we're tapping into the built in one's. The init.sqf is what handles setting the variable on login. The RC portion should only run when you run it. So if you get a system message without using the RC action when logging in the rc portion is running without the player selecting it.
 
This would be how you could do the DIK key way.

Code:
// (c) [email protected], licensed to DayZMod for the community

#include "\ca\editor\Data\Scripts\dikCodes.h"

_dikCode = _this select 1;
_shiftState = _this select 2;
_ctrlState = _this select 3;
_altState = _this select 4;
_handled = false;

if (isNil "keyboard_keys") then {
    _muteSound = {
        call player_toggleSoundMute;
        _handled = true;
    };
    _statusUI = {
        profileNamespace setVariable ["statusUI",(if (profileNamespace getVariable ["statusUI",1] == 1) then {0} else {1})];
        saveProfileNamespace;
        call ui_changeDisplay;
        _handled = true;
    };
    _rifle = {
        2 call dz_fn_switchWeapon;
        _handled = true;
    };
    _pistol = {
        3 call dz_fn_switchWeapon;
        _handled = true;
    };
    _melee = {
        4 call dz_fn_switchWeapon;
        _handled = true;
    };
    _throwable = { // select next non empty throwable weapon
        if (vehicle player == player) then {
            _ammo_throwable = [];
            _muzzles_throwable = [];
            _weapon_throwable = [];
            {
                _weapon = _x;
                _muzzles = getArray(configFile >> "cfgWeapons" >> _weapon >> "muzzles");
                if (count _muzzles == 0) then { _muzzles = [_weapon ]; };
                {
                    _muzz = _x;
                    {
                        if (_x in magazines player) then {
                            _ammo_throwable set [ count _ammo_throwable, getText(configFile >> "cfgMagazines" >> _x >> "ammo") ];
                            _muzzles_throwable set [ count _muzzles_throwable, _muzz ];
                            _weapon_throwable set [ count _weapon_throwable, _weapon ];
                        };                      
                    } forEach getArray(configFile >> "cfgWeapons" >> _weapon >> _muzz >> "magazines");
                } forEach _muzzles;
            } forEach ["Throw"];

            _magCount = count _ammo_throwable;
            if (_magCount > 0) then {
                if (isNil "KB_CurrentThrowable") then { KB_CurrentThrowable = -1; };
                _currentAmmo = (weaponState player) select 3;       
                _idx = _ammo_throwable find _currentAmmo;
                if (_idx >= 0) then { KB_CurrentThrowable = _idx; };
                KB_CurrentThrowable = (KB_CurrentThrowable + 1) mod _magCount;
                player selectWeapon (_muzzles_throwable select KB_CurrentThrowable);
                _handled = true;
            };
        };
    };
    _gear = {
        if ((vehicle player != player) and !_shiftState and !_ctrlState and !_altState && !dialog) then {
            createGearDialog [player, "RscDisplayGear"];
            _handled = true;
        }
        else { if ((vehicle player == player) and (speed vehicle player > 0)) then {
            //[objNull, player, rSwitchMove,""] call RE;
            _handled = true;
        };};
    };
    _forcesave = {
        if (diag_tickTime - dayz_lastSave > 10) then {
            call player_forceSave;
        };
    };
    _forcesave2 = {
        if ((!isNull (findDisplay 106)) OR dialog) then {
            call player_forceSave;          
        };
    };
    _drop = {
        force_dropBody = true;
    };
    _interrupt = {
        r_interrupt = true;
    };
    // TODO: left/right, when gear open: onKeyDown = "[_this,'onKeyDown',0,107,0,107] execVM '\z\addons\dayz_code\system\handleGear.sqf'";
    _noise = {
        if (diag_ticktime - dayz_lastCheckBit > 10) then {
            dayz_lastCheckBit = diag_ticktime;
            [player,20,true,(getPosATL player)] call player_alertZombies;
        };
    };
    _anontoggle = {
        _anonstat = profileNamespace getVariable "Anon";
        if (isnil "_anonstat") then {
            player setVariable ["Anon",false,true];
        };
        if (player getvariable "Anon") then {
            profileNamespace setVariable ["Anon",false];
            player setVariable ["Anon",false,true];
            systemchat "Your name will show up in kill messages now...";
        } else {
            profileNamespace setVariable ["Anon",true];
            player setVariable ["Anon",true,true];
            systemchat "You will now be anonymous in kill messages.";
        };
        saveProfileNamespace;
    };
    
    _journal = {
        if (!dayz_isSwimming and !dialog) then {
            [player,4,true,(getPosATL player)] call player_alertZombies;
            createDialog 'horde_journal_front_cover';
        };
        _handled = true;
    };

    _build_left = {
        // fence construction
        if (0 != count Dayz_constructionContext) then {
            _angleRef = Dayz_constructionContext select 1;
            _dir = _angleRef - (getDir player) -5;
            if (_dir > 180) then {_dir = _dir - 360}; 
            if (_dir < -180) then {_dir = _dir + 360};
            if ( _dir > -75) then {
                _new = floor((_angleRef - 5)/5)*5;
                Dayz_constructionContext set [ 1, _new]; // favorite angle
                r_interrupt = true;
            };
            _handled = true;
        };
        dayz_dodge = true;
    };
    _build_right = {
        if (0 != count Dayz_constructionContext) then {
            _angleRef = Dayz_constructionContext select 1;
            _dir = _angleRef - (getDir player) +5;
            if (_dir > 180) then { _dir = _dir - 360; }; 
            if (_dir < -180) then { _dir = _dir + 360; };
            if (_dir < 75) then {
                _new = ceil((_angleRef + 5)/5)*5;
                Dayz_constructionContext set [ 1, _new]; // favorite angle
                r_interrupt = true;
            };
            _handled = true;
        };
        dayz_dodge = true;
    };

    _build_camOnOff = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_buildCamera.sqf";

    _build_str8OnOff = {
        r_interrupt = true;
        
        if (0 != count Dayz_constructionContext) then {
            Dayz_constructionContext set [ 5, !(Dayz_constructionContext select 5) ];
            _handled = true;
        };
        
        if (animationState player in ["bunnyhopunarmed","bunnyhoprifle"]) then {
            //Fixes invisible weapon switch glitch if double tapping vault with no weapon in hands
            _handled = true;
        };
    };

    _block = {
        _handled = true;
    };
    
    _addArray = {
        {
            if (_x <= 999999) then {
                keyboard_keys set [_x, _this select 1];
            };
        } forEach (_this select 0);
    };

    keyboard_keys = [];
    keyboard_keys resize 256;
    [[DIK_1], _rifle] call _addArray;
    [[DIK_2], _pistol] call _addArray;
    [[DIK_3], _melee] call _addArray;
    // number 8 on keyboard...
    [[DIK_8], _anontoggle] call _addArray;
    //[[DIK_4], _throwable] call _addArray;
    [actionKeys "Gear", _gear] call _addArray;
    [actionKeys "Prone", _drop] call _addArray;
    [actionKeys "Crouch", _drop] call _addArray;
    [actionKeys "MoveLeft", _interrupt] call _addArray;
    [actionKeys "MoveRight", _interrupt] call _addArray;
    [actionKeys "MoveForward", _interrupt] call _addArray;
    [actionKeys "MoveBack", _interrupt] call _addArray;
    [actionKeys "TurnLeft", _interrupt] call _addArray;
    [actionKeys "TurnRight", _interrupt] call _addArray;
    [actionKeys "PushToTalk", _noise] call _addArray;
    [actionKeys "VoiceOverNet", _noise] call _addArray;
    [actionKeys "PushToTalkDirect", _noise] call _addArray;
    [actionKeys "Chat", _noise] call _addArray;
    [actionKeys "User20", _journal] call _addArray;
    [actionKeys "Diary", _journal] call _addArray;
    [actionKeys "NetworkStats", _journal] call _addArray;
    [[DIK_F1], _muteSound] call _addArray;
    [[DIK_F3], _statusUI] call _addArray;
    [[DIK_F4], {if (diag_tickTime - dayz_lastSave > 10) then {call player_forceSave;};_handled = true;}] call _addArray;
    [[DIK_TAB,DIK_DELETE], _forcesave] call _addArray;
    //[[DIK_F4, DIK_RMENU, DIK_LMENU,DIK_LSHIFT,DIK_RSHIFT,DIK_ESCAPE], _forcesave2] call _addArray;
    [actionKeys "LeanLeft", _build_left ] call _addArray;
    [actionKeys "LeanRight", _build_right ] call _addArray;
    [actionKeys "PersonView", _build_camOnOff ] call _addArray; // Camera Mode
    [actionKeys "GetOver", _build_str8OnOff ] call _addArray; // V
//  [[DIK_NUMPAD7], _rotate_left] call _addArray;
//  [[DIK_NUMPAD9], _rotate_right] call _addArray;
    [actionKeys "ForceCommandingMode", _block] call _addArray;
    [[  DIK_F9,DIK_F10,DIK_F11,DIK_F12,
        DIK_F8,DIK_F7,DIK_F6,DIK_F5,
        DIK_F2,DIK_0,DIK_9,
        DIK_7,DIK_6,DIK_5,DIK_4], _block] call _addArray;
    [actionKeys "DSInterface", _block] call _addArray;
    [[DIK_P], {if (_shiftState) then {_handled = true;};}] call _addArray;
    diag_log "keyboard_keys reset";
};

if (r_player_unconsciousInputDisabled) exitWith {true};
_code = keyboard_keys select _dikCode;
if (!isNil "_code") then {
    call _code;
};

_handled
 
This would be how you could do the DIK key way.

Code:
// (c) [email protected], licensed to DayZMod for the community

#include "\ca\editor\Data\Scripts\dikCodes.h"

_dikCode = _this select 1;
_shiftState = _this select 2;
_ctrlState = _this select 3;
_altState = _this select 4;
_handled = false;

if (isNil "keyboard_keys") then {
    _muteSound = {
        call player_toggleSoundMute;
        _handled = true;
    };
    _statusUI = {
        profileNamespace setVariable ["statusUI",(if (profileNamespace getVariable ["statusUI",1] == 1) then {0} else {1})];
        saveProfileNamespace;
        call ui_changeDisplay;
        _handled = true;
    };
    _rifle = {
        2 call dz_fn_switchWeapon;
        _handled = true;
    };
    _pistol = {
        3 call dz_fn_switchWeapon;
        _handled = true;
    };
    _melee = {
        4 call dz_fn_switchWeapon;
        _handled = true;
    };
    _throwable = { // select next non empty throwable weapon
        if (vehicle player == player) then {
            _ammo_throwable = [];
            _muzzles_throwable = [];
            _weapon_throwable = [];
            {
                _weapon = _x;
                _muzzles = getArray(configFile >> "cfgWeapons" >> _weapon >> "muzzles");
                if (count _muzzles == 0) then { _muzzles = [_weapon ]; };
                {
                    _muzz = _x;
                    {
                        if (_x in magazines player) then {
                            _ammo_throwable set [ count _ammo_throwable, getText(configFile >> "cfgMagazines" >> _x >> "ammo") ];
                            _muzzles_throwable set [ count _muzzles_throwable, _muzz ];
                            _weapon_throwable set [ count _weapon_throwable, _weapon ];
                        };                     
                    } forEach getArray(configFile >> "cfgWeapons" >> _weapon >> _muzz >> "magazines");
                } forEach _muzzles;
            } forEach ["Throw"];

            _magCount = count _ammo_throwable;
            if (_magCount > 0) then {
                if (isNil "KB_CurrentThrowable") then { KB_CurrentThrowable = -1; };
                _currentAmmo = (weaponState player) select 3;      
                _idx = _ammo_throwable find _currentAmmo;
                if (_idx >= 0) then { KB_CurrentThrowable = _idx; };
                KB_CurrentThrowable = (KB_CurrentThrowable + 1) mod _magCount;
                player selectWeapon (_muzzles_throwable select KB_CurrentThrowable);
                _handled = true;
            };
        };
    };
    _gear = {
        if ((vehicle player != player) and !_shiftState and !_ctrlState and !_altState && !dialog) then {
            createGearDialog [player, "RscDisplayGear"];
            _handled = true;
        }
        else { if ((vehicle player == player) and (speed vehicle player > 0)) then {
            //[objNull, player, rSwitchMove,""] call RE;
            _handled = true;
        };};
    };
    _forcesave = {
        if (diag_tickTime - dayz_lastSave > 10) then {
            call player_forceSave;
        };
    };
    _forcesave2 = {
        if ((!isNull (findDisplay 106)) OR dialog) then {
            call player_forceSave;         
        };
    };
    _drop = {
        force_dropBody = true;
    };
    _interrupt = {
        r_interrupt = true;
    };
    // TODO: left/right, when gear open: onKeyDown = "[_this,'onKeyDown',0,107,0,107] execVM '\z\addons\dayz_code\system\handleGear.sqf'";
    _noise = {
        if (diag_ticktime - dayz_lastCheckBit > 10) then {
            dayz_lastCheckBit = diag_ticktime;
            [player,20,true,(getPosATL player)] call player_alertZombies;
        };
    };
    _anontoggle = {
        _anonstat = profileNamespace getVariable "Anon";
        if (isnil "_anonstat") then {
            player setVariable ["Anon",false,true];
        };
        if (player getvariable "Anon") then {
            profileNamespace setVariable ["Anon",false];
            player setVariable ["Anon",false,true];
            systemchat "Your name will show up in kill messages now...";
        } else {
            profileNamespace setVariable ["Anon",true];
            player setVariable ["Anon",true,true];
            systemchat "You will now be anonymous in kill messages.";
        };
        saveProfileNamespace;
    };
   
    _journal = {
        if (!dayz_isSwimming and !dialog) then {
            [player,4,true,(getPosATL player)] call player_alertZombies;
            createDialog 'horde_journal_front_cover';
        };
        _handled = true;
    };

    _build_left = {
        // fence construction
        if (0 != count Dayz_constructionContext) then {
            _angleRef = Dayz_constructionContext select 1;
            _dir = _angleRef - (getDir player) -5;
            if (_dir > 180) then {_dir = _dir - 360};
            if (_dir < -180) then {_dir = _dir + 360};
            if ( _dir > -75) then {
                _new = floor((_angleRef - 5)/5)*5;
                Dayz_constructionContext set [ 1, _new]; // favorite angle
                r_interrupt = true;
            };
            _handled = true;
        };
        dayz_dodge = true;
    };
    _build_right = {
        if (0 != count Dayz_constructionContext) then {
            _angleRef = Dayz_constructionContext select 1;
            _dir = _angleRef - (getDir player) +5;
            if (_dir > 180) then { _dir = _dir - 360; };
            if (_dir < -180) then { _dir = _dir + 360; };
            if (_dir < 75) then {
                _new = ceil((_angleRef + 5)/5)*5;
                Dayz_constructionContext set [ 1, _new]; // favorite angle
                r_interrupt = true;
            };
            _handled = true;
        };
        dayz_dodge = true;
    };

    _build_camOnOff = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_buildCamera.sqf";

    _build_str8OnOff = {
        r_interrupt = true;
       
        if (0 != count Dayz_constructionContext) then {
            Dayz_constructionContext set [ 5, !(Dayz_constructionContext select 5) ];
            _handled = true;
        };
       
        if (animationState player in ["bunnyhopunarmed","bunnyhoprifle"]) then {
            //Fixes invisible weapon switch glitch if double tapping vault with no weapon in hands
            _handled = true;
        };
    };

    _block = {
        _handled = true;
    };
   
    _addArray = {
        {
            if (_x <= 999999) then {
                keyboard_keys set [_x, _this select 1];
            };
        } forEach (_this select 0);
    };

    keyboard_keys = [];
    keyboard_keys resize 256;
    [[DIK_1], _rifle] call _addArray;
    [[DIK_2], _pistol] call _addArray;
    [[DIK_3], _melee] call _addArray;
    // number 8 on keyboard...
    [[DIK_8], _anontoggle] call _addArray;
    //[[DIK_4], _throwable] call _addArray;
    [actionKeys "Gear", _gear] call _addArray;
    [actionKeys "Prone", _drop] call _addArray;
    [actionKeys "Crouch", _drop] call _addArray;
    [actionKeys "MoveLeft", _interrupt] call _addArray;
    [actionKeys "MoveRight", _interrupt] call _addArray;
    [actionKeys "MoveForward", _interrupt] call _addArray;
    [actionKeys "MoveBack", _interrupt] call _addArray;
    [actionKeys "TurnLeft", _interrupt] call _addArray;
    [actionKeys "TurnRight", _interrupt] call _addArray;
    [actionKeys "PushToTalk", _noise] call _addArray;
    [actionKeys "VoiceOverNet", _noise] call _addArray;
    [actionKeys "PushToTalkDirect", _noise] call _addArray;
    [actionKeys "Chat", _noise] call _addArray;
    [actionKeys "User20", _journal] call _addArray;
    [actionKeys "Diary", _journal] call _addArray;
    [actionKeys "NetworkStats", _journal] call _addArray;
    [[DIK_F1], _muteSound] call _addArray;
    [[DIK_F3], _statusUI] call _addArray;
    [[DIK_F4], {if (diag_tickTime - dayz_lastSave > 10) then {call player_forceSave;};_handled = true;}] call _addArray;
    [[DIK_TAB,DIK_DELETE], _forcesave] call _addArray;
    //[[DIK_F4, DIK_RMENU, DIK_LMENU,DIK_LSHIFT,DIK_RSHIFT,DIK_ESCAPE], _forcesave2] call _addArray;
    [actionKeys "LeanLeft", _build_left ] call _addArray;
    [actionKeys "LeanRight", _build_right ] call _addArray;
    [actionKeys "PersonView", _build_camOnOff ] call _addArray; // Camera Mode
    [actionKeys "GetOver", _build_str8OnOff ] call _addArray; // V
//  [[DIK_NUMPAD7], _rotate_left] call _addArray;
//  [[DIK_NUMPAD9], _rotate_right] call _addArray;
    [actionKeys "ForceCommandingMode", _block] call _addArray;
    [[  DIK_F9,DIK_F10,DIK_F11,DIK_F12,
        DIK_F8,DIK_F7,DIK_F6,DIK_F5,
        DIK_F2,DIK_0,DIK_9,
        DIK_7,DIK_6,DIK_5,DIK_4], _block] call _addArray;
    [actionKeys "DSInterface", _block] call _addArray;
    [[DIK_P], {if (_shiftState) then {_handled = true;};}] call _addArray;
    diag_log "keyboard_keys reset";
};

if (r_player_unconsciousInputDisabled) exitWith {true};
_code = keyboard_keys select _dikCode;
if (!isNil "_code") then {
    call _code;
};

_handled
Thanks a lot man, i'll try it out!
 
The way we ended up doing it I don't think you need to modify the server_monitor.sqf at all.
 
Back
Top