1. hi,
    i look up on bettechat plugin but is over me
    did somebody can tell me how to make chat messages / kills / etc smaller than normal ?
    P.S : I use betterChat plugin
     
  2. {
    "GroupName": "owner",
    "Priority": 0,
    "Title": {
    "Text": "{OWNER}",
    "Color": "#b200ff",
    "Size": 15, -------------------------Change me
    "Hidden": false,
    "HiddenIfNotPrimary": false
    },
    "Username": {
    "Color": "#ffffff",
    "Size": 15 -------------------------Change me
    },
    "Message": {
    "Color": "#ffffff",
    "Size": 15 -------------------------Change me
    },
    "Format": {
    "Chat": "{Title} {Username}: {Message}",
    "Console": "{Title} {Username}: {Message}"
    }
    },
     
  3. is not the same ?

    public class TitleSettings
    {
    public string Text = "[Player]";
    public string Color = "#55aaff";
    public int Size = 13;
    public bool Hidden = false;
    public bool HiddenIfNotPrimary = false;

    =======================

    public string Color = "#55aaff";
    public int Size = 13;

    public string GetUniversalColor() => Color.StartsWith("#") ? Color.Substring(1) : Color;
    }

    public class MessageSettings
    {
    public string Color = "white";
    public int Size = 12;

    public string GetUniversalColor() => Color.StartsWith("#") ? Color.Substring(1) : Color;
    }

    public class FormatSettings
    {
    public string Chat = "{Title} {Username}: {Message}";
    public string Console = "{Title} {Username}: {Message}";
    }

    ====================

    in BetterChat.cs its only "size" what i found , i did the change but nothing happend
    [DOUBLEPOST=1526319438][/DOUBLEPOST]oh, i found in /data.
    thank you !
    [DOUBLEPOST=1526319881][/DOUBLEPOST]srry for SPAM but what about the rest of chat ? like connected , disconnected, kills, voteday etc ?
     
  4. @Licurici Depends on how they send messages, if they use global then use BetterSay otherwise you'll need to format per-plugin. Generally, most plugins create their own language file so edit it there.

    Code:
    We are <b>not</b> amused.
    Code:
    We are <i>usually</i> not amused.
    Code:
     We are <size=50>largely</size> unaffected.
    Code:
     We are <color=green>green</color> with envy