any way to put a T in front of anything that is a Team chat so you can tell the difference in Discord what is team and what is regular chat? Thank you
Team chat identificationSolved
You can edit the lang file for "TeamChatMessage" and configure it how you want.
Thanks I didnt look there just in config and data. Not good with this code stoff so I will try this.
{
"NotLinked": "You have not yet linked your discord to the rust server. Please respond to this message with /join to begin the link.",
"Joined": "({0:HH:mm}) {1} has joined.",
"Disconnected": "({0:HH:mm}) {1} has disconnected. Reason: {2}",
"ChatMessage": "({0:HH:mm}) {1}: {2}",
"BetterChatMessage": "({0:HH:mm}) {1}",
"TeamChatMessage": "({0:HH:mm}TEAM) {1}: {2}",
"BetterChatTeamMessage": "({0:HH:mm}TEAM) {1}",
"ServerMessage": "{0}: {1}",
"ClanTag": "[{0}] "
}
Merged post
OK if anyone else wants to do this this is my current LANG file and it seems to work perfect now. Thanks MJSU
{
"NotLinked": "You have not yet linked your discord to the rust server. Please respond to this message with /join to begin the link.",
"Joined": "({0:HH:mm}) {1} has joined.",
"Disconnected": "({0:HH:mm}) {1} has disconnected. Reason: {2}",
"ChatMessage": "({0:HH:mm}) {1}: {2}",
"BetterChatMessage": "({0:HH:mm}) {1}",
"TeamChatMessage": "({0:HH:mm} [TEAM]) {1}: {2}",
"BetterChatTeamMessage": "({0:HH:mm} [TEAM]) {1}",
"ServerMessage": "{0}: {1}",
"ClanTag": "[{0}] "
}
Locked automatically