Jump to content
  • 0

My death messages is not working


zeppo

Question

The death message dosent show at all, whats the problem?

 

My init file

 

DZE_DeathMsgGlobal           = true;
DZE_DeathMsgTitleText         = true;
DZE_DeathMsgSide                = true;
 
enableRadio true;
enableSentences true;
 
 

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

in [addons\dayz_server\compile] server_playerDied.sqf uncomment this:

if(DZE_DeathMsgGlobal) then {
[nil, nil, rspawn, [_killer, _message], { (_this select 0) globalChat (_this select 1) }] call RE;
};
if(DZE_DeathMsgGlobal) then {
customRemoteMessage = ['globalChat', _message, _killer];
publicVariable "customRemoteMessage";
};
if(DZE_DeathMsgSide) then {
[nil, nil, rspawn, [_killer, _message], { (_this select 0) sideChat (_this select 1) }] call RE;
};
if(DZE_DeathMsgTitleText) then {
[nil,nil,"per",rTITLETEXT,_message,"PLAIN DOWN"] call RE;
};
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...