• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Chat colors

Status
Not open for further replies.
Level 2
Joined
Aug 23, 2017
Messages
9
Hey.
I'm curious if it's possible to add colors to team chat, all chat & private chat? Like whispers, they show up in green, but I would want the same for those other chats (possibly blue for team so it doesn't cause confusion with whispers).

I haven't tried anything because I think it's just a map related thing but I'd still love to know how before I try anything.

Thanks!
 
Level 28
Joined
Feb 18, 2014
Messages
3,580
You can find them in the MPQ folder, if you're using Magos or any similar MPQ Editor you'll find them through this Path : UI/FrameDef/NetworkStrings.fdf
Code:
// --- chatdisplay colors
    CHATCOLOR_TALK_USER                 "|CFFFED312",
    CHATCOLOR_TALK_MESSAGE              "|CFFFFFFFF",
    CHATCOLOR_WHISPER_USER              "|CFFFED312",
    CHATCOLOR_WHISPER_MESSAGE           "|CFF00FF00",
    CHATCOLOR_WHISPERSENT_USER          "|CFFFED312",
    CHATCOLOR_WHISPERSENT_MESSAGE       "|CFF00FF00",
    CHATCOLOR_INFO_MESSAGE              "|CFF80D8FF",
    CHATCOLOR_BROADCAST_MESSAGE         "|CFF80D8FF",
    CHATCOLOR_EMOTE_MESSAGE             "|CFF888888",
    CHATCOLOR_ERROR_MESSAGE             "|CFFFF0000",
 
Status
Not open for further replies.
Top