Author Topic: External Chat Overlay  (Read 2182 times)

0 Members and 1 Guest are viewing this topic.

VibeRaider

  • Youngling
  • *
  • Posts: 33
  • Karma: +0/-0
    • View Profile
  • Twitch Name: VibeRaiderLP
External Chat Overlay
« on: November 28, 2014, 10:51:54 PM »
Is there anyway to configure the text information/colors for the overlay appearance? I can't seem to find a way to edit those details. (Note: I can edit the one in the application for DeepBot, but not external for overlay.)

Also is it possible to get this chat to ignore bots like NightBot?

emrerocky

  • Advisor
  • Councilor
  • **
  • Posts: 1240
  • Karma: +163/-8
    • View Profile
    • emrerocky's Website
  • Twitch Name: emrerocky
Re: External Chat Overlay
« Reply #1 on: November 29, 2014, 02:29:01 AM »
You cannot change the color of the background, but you can change the color of the chat lines with this CSS:
Code: [Select]
.chat_line .message {
    color: #fff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

And there is no way for DeepBot to hide responses from the bot, but you can enable it that any command said by a user doesn't show up in the chat.

VibeRaider

  • Youngling
  • *
  • Posts: 33
  • Karma: +0/-0
    • View Profile
  • Twitch Name: VibeRaiderLP
Re: External Chat Overlay
« Reply #2 on: November 29, 2014, 04:50:46 AM »
Ok, was hoping it could ignore chat from a person like it does the commands, which is already enabled.

For the colors in the CSS, any chance I can get a tip which one is which? Also what are the defining factors for it? I am not familiar w/ #fff / #000 etc. Sorry to need my hand held so badly on this, just a bit time crunched.

emrerocky

  • Advisor
  • Councilor
  • **
  • Posts: 1240
  • Karma: +163/-8
    • View Profile
    • emrerocky's Website
  • Twitch Name: emrerocky
Re: External Chat Overlay
« Reply #3 on: November 29, 2014, 04:55:24 AM »
You just have to add the CSS in obs, and change the color hex code to whatever you want.