BetterSay

Moved

Total Downloads: 5,081 - First Release: Apr 30, 2015 - Last Update: May 13, 2018

5/5, 14 likes
  1. Yes it is. Apparently it was not migrated to the new umod page correctly. Thanks for giving notice.
     
  2. Wulf

    Wulf Community Admin

    It is, just not public yet.
     
  3. This is great. Makes staff look much more professional when speaking from RCON. I was wondering - is there a way to add tags? So instead of:

    {
    "Format": "{Title}{Message}",
    "Title": "★ Sensei",
    "Title Color": "yellow",
    "Message Color": "white",
    "Chat Icon (SteamID64)": 76561198095703500
    }

    It could be:

    {
    "Format": "{Tag}{Title}{Message}",
    "Tag: [Admin]",
    "Tag Color": "yellow",
    "Title": "Lucid",
    "Title Color": "blue",
    "Message Color": "white",
    "Chat Icon (SteamID64)": 76561198095703500
    }
    [DOUBLEPOST=1534549799][/DOUBLEPOST]Ok update: I actually figured this out by doing:

    "Format": "<color=yellow>[Admin]</color>{Title}{Message}",

    but to change formatting it adheres to html right? Is there anyway I can utilize hex colour codes instead to give more precise editing of text?
     
    Last edited by a moderator: Aug 18, 2018
  4. I would basically just like to be able to mimic my normal in-game name, so people can't tell the difference wehether it's a server console chat speaking or not...
     
  5. For formatting use the unity rich text tags: Unity - Manual: Rich Text
     
  6. Thanks, so see below, seeing as I've tried formatting colour, should I just go ahead and remove the "Title Color" line?

    {
    "Format": "<size=13><color=#f7db3f>★ </size></color><size=15><color=#55aaff>{Title}</size></color><size=15>{Message}</size>",
    "Title": "Sensei",
    "Title Color": "yellow",
    "Message Color": "white",
    "Chat Icon (SteamID64)": 76561198095703500
    }55aaff

    I want it to look like this:
    upload_2018-8-18_17-26-35.png
     

    Attached Files:

  7. You can put #55aaff into the Title Color variable instead. It's not removable.
     
  8. So like this?

    "Format": "<size=13><color=#f7db3f>★ </size></color><size=15>{Title}{Message}</size>",
    "Title": "Sensei",
    "Title Color": "#55aaff",
    "Message Color": "white",
    "Chat Icon (SteamID64)": 76561198095703500
    }55aaff
     
  9. Yes, you have to remove "55aaff" behind the closing curly bracket "}" though.
     
  10. Whoops sorry yes, ok thanks I'll try this tonight!
     
  11. And don't forget the opening curly bracket at the start ;)
     
  12. haha yes I added exactly this:

    {
    "Format": "<size=13><color=#f7db3f>★ </size></color><size=15>{Title}{Message}</size>",
    "Title": "Sensei",
    "Title Color": "#55aaff",
    "Message Color": "white",
    "Chat Icon (SteamID64)": 76561198095703500
    }

    However it appeared like this:
    upload_2018-8-18_19-32-27.png
     
  13. Oh sorry I missed that. You have to close the tags in the opposing order.
    So:
    "Format": "<size=13><color=#f7db3f>★ </color></size><size=15>{Title}{Message}</size>",
     
  14. Ah, worked perfectly, thank you! It's exactly the same as when Im actually connected to the server now