Page MenuHomeFeedback Tracker

Messages in chat from player logged as admin not intercepted on the server side in DayZ Experemental
Closed, ResolvedPublic

Description

Messages in chat from player logged as admin not intercepted on the server side in DayZ Experemental
This is a very big problem.!!!
Its very need for testing servers with server mods only!!!!

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7 x64
Operating System Version
Windows Server 2008 R2 sp1
Category
General
Steps To Reproduce

override void OnEvent(EventType eventTypeId, Param params)
{

		switch(eventTypeId)
		{
			case ChatMessageEventTypeID:
			{
				ChatMessageEventParams chat_params = ChatMessageEventParams.Cast(params);
                                
                                //No any messages from chat here
                                //Only messages from server! (((((((((((

				if (chat_debug) Print("::: init.c ::: OnEvent ::: ChatMessageEventTypeID: chat_params.param1 = " + chat_params.param1 + ", chat_params.param2 " + chat_params.param2 + ", chat_params.param3 " + chat_params.param3 + ", chat_params.param4 " + chat_params.param4);
				if (chat_params.param1 == 0 && chat_params.param2 != "" && chat_params.param3 != "") 
				{
					AdminMod.OnAdminChatRequest(params);
				}
			break;
			}
			default:
			{
				super.OnEvent(eventTypeId, params);
			break;
			}
		break;
		}

}

Event Timeline

Geez changed the task status from New to Acknowledged.Aug 26 2019, 12:36 PM
Geez added a subscriber: Geez.

Thank you for the report borizz.k.
We are going to look at what can be done.
Regards,
Geez

Dear Geez.
Anything known to solve this problem?

Geez added a comment.EditedSep 5 2019, 3:44 PM

Hello borizz.k
It appears that no messages are intercepted, not just the admin ones. We will look into the issue internally and will let you know once there is more information available.
Regards,
Geez

Please fix it
GetGame().ChatPlayer("message") (global message to all players connected to server) not works too (((

Geez closed this task as Resolved.Oct 24 2019, 3:37 PM
Geez claimed this task.

Hello borizz.k.
We have fixed the issue internally and it will be fixed on Steam in one of the future updates.
Regards,
Geez

borizz.k added a comment.EditedOct 24 2019, 9:00 PM

Good news...
May be can return color change of massages to players on server side?
I built mod for this, but native function much better...