1.8.7 Kill Messages?

HospitalChair

Well-Known Member
I was wondering if anyone had an update for this last patch (Dayzmod cherno 1.8.7). I attempted to use my old script taking from this:

http://opendayz.net/threads/kill-messages-1-8-2.20957/

I had a scripter tweak it for 1.8.6.1 for me but he has since disappeared on me and i havent been able to debug. This is one of the few scripts that my players are desperately wanting and I'm willing to compensate someone for their time.

Thanks
 
I was wondering if anyone had an update for this last patch (Dayzmod cherno 1.8.7). I attempted to use my old script taking from this:

http://opendayz.net/threads/kill-messages-1-8-2.20957/

I had a scripter tweak it for 1.8.6.1 for me but he has since disappeared on me and i havent been able to debug. This is one of the few scripts that my players are desperately wanting and I'm willing to compensate someone for their time.

Thanks

I have my own kill messages that I made cause I couldn't get any other variants to work. It's a lil buggy but seems to work fairly well most of the time.
 
Can probably update mine to have weapon images or improve the look of it but this is what I threw together.

Server Side:

server_monitor.sqf at the very bottom change the PVDZ_sec_atp PVEH to this:
Code:
"PVDZ_sec_atp" addPublicVariableEventHandler {
    _x = _this select 1;
    switch (1==1) do {
        case (typeName _x == "STRING") : { // just some logs from the client
            diag_log _x;
        };
        case (count _x == 2) : { // wrong side
            diag_log Format [ "P1ayer %1 reports possible 'side' hack... Server may be comprised!", (_x select 1) call fa_plr2Str ];
        };
        default { // player hit
            _unit = _x select 0;
            _source = _x select 1;
            if (((!(isNil {_source})) AND {(!(isNull _source))}) AND {((_source isKindOf "CAManBase") AND {(owner _unit != owner _source)})}) then {
                diag_log format ["P1ayer %1 hit by %2 %3 from %4 meters",
                    _unit call fa_plr2Str,  _source call fa_plr2Str, _x select 2, _x select 3];
                if (_unit getVariable["processedDeath", 0] == 0) then {
                    _weapon = (currentWeapon _source);
                    _weapon_dmg = gettext (configFile >> 'cfgWeapons' >> _weapon >> 'displayName');
                    _distance = round (_unit distance _source);
                    _unit setVariable ["AttackedByWeapon", _weapon_dmg, true];
                    _unit setVariable ["AttackedFromDistance", _distance, true];
                    _anonstat = _source getVariable "Anon";
                    if (isnil "_anonstat") then {
                    _anonstat = false;
                    };
                    if (!_anonstat) then {
                    _unit setVariable ["attacker", name _source ];
                    } else {
                    _unit setVariable ["attacker", "Anonymous" ];
                    };
                    _unit setVariable [ "noatlf4", diag_ticktime ]; // server-side "not in combat" test, if player is not already dead
                };
            };
        };
    };
};

At the very bottom of server_playerDied.sqf add this:
Code:
[_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];
    CustomMessage = _message;
    } else {
    _message = format["%1 killed by %2 with %3 from [%4m]", _unitname, _attacker, _attackedby, _attackdistance];
    CustomMessage = _message;
    };
    diag_log format["%1",CustomMessage];
    publicVariable "CustomMessage";
};

client side:

client sided publicEH.sqf required but can probably stick this somewhere else.

in publicEH.sqf in the "if (!isDedicated) then {" code chunk add this:
Code:
"CustomMessage" addPublicVariableEventHandler {
        _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;
    };

also I added an additional feature for players to show as anonymous. So instead of "Player1 killed by player2 with M4 from [#m]" players could turn a feature on to make it "Player1 killed by Anonymous with M4 from [#m]".

The code for that can be tied into a scroll menu easily I just have it tied into my player menu dialog so I can only supply the code for it:
Code for anonymous status toggle:
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;

init.sqf in the !isDedicated portion add this for anonym:
Code:
_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];
        };
    };

NOTE:

only issues I've seen with the way I've done it is that sometimes if you get shot by someone and run off and die it'll count the last person to shoot you as killing you since they were the last player to hit you. Never got around to adding a fix for it.
 
Doesn't appear to be working. Just logged into the server and after a couple of kills (kill messages seem to be notorious for not working 100% of the time) it's still just showing the standard "Player was killed" message.

Just for clarification when you say client side you dont actually mean that they have to tweak their own file for that, it can just be called in the mpmission folder, correct?
 
Doesn't appear to be working. Just logged into the server and after a couple of kills (kill messages seem to be notorious for not working 100% of the time) it's still just showing the standard "Player was killed" message.

Just for clarification when you say client side you dont actually mean that they have to tweak their own file for that, it can just be called in the mpmission folder, correct?

Here is a dropbox folder I made to show the structure. You can kinda see how I added it in.

https://www.dropbox.com/sh/kkhvpk288rh4e4d/AAB1gY8JwYCYdtI0vnhjVBV1a?dl=0
 
Last edited:
I was. Not sure why the edits i made originally didnt work but the files you uploaded did. The only thing and it's relatively minor is that it shows the kill message in the top left in red and again in the chat feed...It's a little redundant but a minor gripe for a script i've been trying to get to work for a while. Much appreciated! Oh and i dont suppose you know how to add a picture of the gun in message. Not a big deal just some flare.

Thanks again, you've been a great help! Glad to have another go to guy on these forums.
 
I was. Not sure why the edits i made originally didnt work but the files you uploaded did. The only thing and it's relatively minor is that it shows the kill message in the top left in red and again in the chat feed...It's a little redundant but a minor gripe for a script i've been trying to get to work for a while. Much appreciated! Oh and i dont suppose you know how to add a picture of the gun in message. Not a big deal just some flare.

Thanks again, you've been a great help! Glad to have another go to guy on these forums.

I remember why I did the repetitive messages with systemchat and the top left message as well.... It was for if 2 players died at once since the top left message will get overwritten with each new kill. So it was more in the chat area to show all since the top left sometimes will skip some with multiple deaths. As for the picture part I think I had that working at one point but changed it for some reason.
 
Good call on the duplicated message, i do remember that being an issue with the last script i had. Thanks again for your help. Do you mind if i PM you if i hit any other roadblocks in the future?
 
Good call on the duplicated message, i do remember that being an issue with the last script i had. Thanks again for your help. Do you mind if i PM you if i hit any other roadblocks in the future?

fine with me, may not be able to do everything but I can help with some things.
 
@Inkko, any idea on how to add anonymous to 1.9.0 kill messages?
I haven't looked at anything dayz related in a while but I can look at how I had it with whatever version I stopped at. I had a scroll menu that you could turn it on and off I just don't remember how I was tracking it for players. When I get home I can look.
 
I kinda quickly went through my old server files and found what I could but it looked like I used the profilenamespace to save the anonymous toggle on or off. I would setvariable in the init.sqf so players would get the variable added to them every login/death and the profilenamespace is what stored if it was on or not. Then server side it would check for the anonymous variable and censor the name if it was enabled.

init.sqf at bottom set variable to profileNamespace if undefined. Used to track persistently I believe.
Code:
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];
        };
    };
};

context menu showing how I toggled Anon on and off. Menu called in fn_selfaction but could be changed to a keyboard DIK key toggle.
Code:
player_menu =
[
    ["",true],
    ["Server info", [2], "#USER:sInfo", -5, [["expression", ""]], "1", "1"],
    ["View distance", [3], "#USER:vd_menu", -5, [["expression", ""]], "1", "1"],
    ["Group Management", [4],  "", -5, [["expression","execVM 'dzgm\loadGroupManagement.sqf';"]], "1", "1"],
    ["Get player ID", [5],  "", -5, [["expression","'uid' execVM 'serverinfo.sqf'"]], "1", "1"],
    ["Weather Options", [6], "#USER:vd_weather", -5, [["expression", ""]], "1", "1"],
    ["Toggle Earplugs", [7],  "", -5, [["expression","execVM 'earplugs.sqf';"]], "1", "1"],
    ["Toggle Anonymous", [8],  "", -5, [["expression","_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;"]], "1", "1"],
    ["Save Player", [9],  "", -5, [["expression","execVM 'playersave.sqf';"]], "1", "1"],
    ["", [-1], "", -5, [["expression", ""]], "1", "0"],
    ["Exit", [13], "", -3, [["expression", ""]], "1", "1"]
];

I had a client sided publicEH.sqf that called this in the if (!isDedicated) then { section.
Code:
 "CustomMessage" addPublicVariableEventHandler {
        _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;
    };

server_playerDied.sqf at bottom.
Code:
[_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];
    CustomMessage = _message;
    } else {
    _message = format["%1 killed by %2 with %3 from [%4m]", _unitname, _attacker, _attackedby, _attackdistance];
    CustomMessage = _message;
    };
    diag_log format["%1",CustomMessage];
    publicVariable "CustomMessage";
};

server_monitor.sqf at bottom.
Code:
"PVDZ_sec_atp" addPublicVariableEventHandler { 
    _x = _this select 1;
    switch (1==1) do {
        case (typeName _x == "STRING") : { // just some logs from the client 
            diag_log _x;
        };
        case (count _x == 2) : { // wrong side
            diag_log Format [ "P1ayer %1 reports possible 'side' hack... Server may be comprised!", (_x select 1) call fa_plr2Str ];
        };
        default { // player hit
            _unit = _x select 0;
            _source = _x select 1;
            if (((!(isNil {_source})) AND {(!(isNull _source))}) AND {((_source isKindOf "CAManBase") AND {(owner _unit != owner _source)})}) then {
                diag_log format ["P1ayer %1 hit by %2 %3 from %4 meters",
                    _unit call fa_plr2Str,  _source call fa_plr2Str, _x select 2, _x select 3];
                if (_unit getVariable["processedDeath", 0] == 0) then {
                    _weapon = (currentWeapon _source);
                    _weapon_dmg = gettext (configFile >> 'cfgWeapons' >> _weapon >> 'displayName');
                    _distance = round (_unit distance _source);
                    _unit setVariable ["AttackedByWeapon", _weapon_dmg, true];
                    _unit setVariable ["AttackedFromDistance", _distance, true];
                    _anonstat = _source getVariable "Anon";
                    if (isnil "_anonstat") then {
                    _anonstat = false;
                    };
                    if (!_anonstat) then {
                    _unit setVariable ["attacker", name _source ];
                    } else {
                    _unit setVariable ["attacker", "Anonymous" ];
                    };
                    _unit setVariable [ "noatlf4", diag_ticktime ]; // server-side "not in combat" test, if player is not already dead
                };
            };
        };
    };
};
 
I haven't looked at anything dayz related in a while but I can look at how I had it with whatever version I stopped at. I had a scroll menu that you could turn it on and off I just don't remember how I was tracking it for players. When I get home I can look.
damn thanks for looking into it. thats so cool to see someone look into it. amazing
 
So yeah i think this is the outdated version since in 1.9. they added the killmessages themselfes.

How would I add the anonymous code and maybe let it toggle by a dik key or make it via "extra right click"? toggle on and off maybe with pressing the map.
I added ur init.sqf and the code to toggle to the extra rc code but it didnt show in the messages.

SQL:
if (!isDedicated) then {

    "RemoteMessage" addPublicVariableEventHandler {(_this select 1) call fnc_remoteMessage;};

};

if (isServer) then {};

SQL:
if (_sourceWeapon == "") then {_sourceWeapon = "unknown weapon";};
        _message = ["killed",_playerName,_sourceName,_sourceWeapon,_distance];


SQL:
#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"];
//[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;

//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
];

// 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];
    RemoteMessage = ["killmsgs",_message];
    publicVariable "RemoteMessage";
};

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

SQL:
"PVDZ_sec_atp" addPublicVariableEventHandler {
    _x = _this select 1;
    switch (1==1) do {
        case (typeName _x == "STRING") : { // just some logs from the client
            diag_log _x;
        };
        case (count _x == 2) : { // wrong side
            diag_log Format [ "P1ayer %1 reports possible 'side' hack... Server may be comprised!", (_x select 1) call fa_plr2Str ];
        };
        default { // player hit
            _unit = _x select 0;
            _source = _x select 1;
            if (((!(isNil {_source})) AND {(!(isNull _source))}) AND {((_source isKindOf "CAManBase") AND {(owner _unit != owner _source)})}) then {
                diag_log format ["P1ayer %1 hit by %2 %3 from %4 meters",
                    _unit call fa_plr2Str,  _source call fa_plr2Str, _x select 2, _x select 3];
                if (_unit getVariable["processedDeath", 0] == 0) then {
                    _weapon = (currentWeapon _source);
                    _weapon_dmg = gettext (configFile >> 'cfgWeapons' >> _weapon >> 'displayName');
                    _distance = round (_unit distance _source);
                    _unit setVariable ["AttackedByWeapon", _weapon_dmg, true];
                    _unit setVariable ["AttackedFromDistance", _distance, true];
                    _anonstat = _source getVariable "Anon";
                    if (isnil "_anonstat") then {
                    _anonstat = false;
                    };
                    if (!_anonstat) then {
                    _unit setVariable ["attacker", name _source ];
                    } else {
                    _unit setVariable ["attacker", "Anonymous" ];
                    };
                    _unit setVariable [ "noatlf4", diag_ticktime ]; // server-side "not in combat" test, if player is not already dead
                };
            };
        };
    };
};
 
I've done the following and it didnt work:

SQL:
// <------ Add below ----------------------------------
[] spawn {
if (isServer) exitwith {};
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];
        };
    };
};

SQL:
class ItemMap {

        class Anon {

            text = "Anon Toggle";

            script = "execVM 'custom\anon.sqf'";

        };

    };

SQL:
_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 has something to do with the different names in the player died it says _sourceName, and in the server_monitor it says _source ? maybe thats why it is not displayed? at least i see the system chat that the anon stat is toggled.
 
Does the built in one just log it to the server RPT or does it actually post in game?

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"];
//[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;

//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
];

// 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];
    
    // 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];
            CustomMessage = _message;
        } else {
            _message = format["%1 killed by %2 with %3 from [%4m]", _unitname, _attacker, _attackedby, _attackdistance];
            CustomMessage = _message;
        };
        diag_log format["%1",CustomMessage];
        publicVariable "CustomMessage";
    };
    //END -----------------------------------------------------------------------
};

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

Then if you add that PVEH from my first post into the mission it should trigger death messages in game.
 
@Inkko IT DOES actually log in game because of the public EH RemoteMessage.

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];
            CustomMessage = _message;
        } else {
            _message = format["%1 killed by %2 with %3 from [%4m]", _unitname, _attacker, _attackedby, _attackdistance];
            CustomMessage = _message;
        };
        diag_log format["%1",CustomMessage];
        publicVariable "CustomMessage";
    };
    //END -----------------------------------------------------------------------

wouldnt it make sense to adjust the server_playerdied.sqf logic instead of adding the custom message with attacker and attacked by etc?
and you think this could work?
 
Last edited:
Back
Top