Jump to content

Forums Announcement

Read-Only Mode for Announcements & Changelogs

Dear Survivors, we'd like to inform you that this forum will transition to read-only mode. From now on, it will serve exclusively as a platform for official announcements and changelogs.

For all community discussions, debates, and engagement, we encourage you to join us on our social media platforms: Discord, Twitter/X, Facebook.

Thank you for being a valued part of our community. We look forward to connecting with you on our other channels!

Stay safe out there,
Your DayZ Team

C4-timah

S D SC: Server Message

Recommended Posts

Is there a way to turn off the small capital "S" and "D" that show up on start of EVERY line for server messages?  I don't know of a single player that has a need to see debug letters in front of every server message. Now that I've installed DaOne, now a "D" shows up after the "S". Debug messages should be in reports and logs. Unless its because this is the latest experimental build? Still, showing up for every server message line is a bit absurd. Is there a way to turn this off? Or do I have to remove all Server Message options?

screenshot1
screenshot2
screenshot3
screenshot4
screenshot5

Edited by C4-timah

Share this post


Link to post
Share on other sites

dont believe so, its not the script itself, just the way the message is outputted by the server

the code for the player counter for example is this

void PlayerCounter()
	{
		array<Man> players = new array<Man>;
	    GetGame().GetPlayers( players );
	    int numbOfplayers = players.Count();
	    GlobalMessage(1,"Players: "+ numbOfplayers.ToString());
	}

only message being passed is "Players: "+ numbOfplayers.ToString()

however you can disable the messages completely, believe in the config, or just manually commenting out the code

Edited by Zze

Share this post


Link to post
Share on other sites

×