So you just remixed Brendan's Chat and you want to know how to use some of the lesser-known features? Here's a handy guide on every hidden feature every remix of Brendan's Chat has!
Theme Shop
The Theme Shop is a great way to reward users for being active. On the original, Brendan changed out the shop every day, which encouraged users to come back and snatch up the themes they wanted before they disappeared.
By default, remixes don't have the theme shop. To get one though, you'll need two things: access to the debug console and up to three theme ID's you want.
A theme ID can be found in the themes
variable around line 50. The theme ID for this theme is "monochrome":
"monochrome": {
name: "Monochrome",
price: 25,
desc: "Only black and white. Except for the other buttons.",
bg: "black",
color: "white",
input: "black",
theme: "white"
}
Once you have the theme ID's you want, simply type this command in the debug console:
setKeyValue("shop", ["theme1", "theme2", "theme3"]);
Just replace "theme1-3" with a string representing the theme ID.
It's also possible to create your own custom themes by simply adding a new key to the themes variable, and changing around the values.
Owner Permissions
Making yourself owner is necessary to ensuring that your chat is yours. As an owner, you can make others admins, clear the chat, make announcements, and ban/unban users.
- In the console, type
getUserId()
- Copy the result.
- Replace the old owner ID on line 1 with yours.
It should look something like:
var ownerId = "gibberish string";
Changing the font
I'll bet no one knew that you could change the font as well. It's as simple as running a single command in the console:
setKeyValue("font", "string");
You can use any font, but keep in mind that users on devices that don't have that font will have a weird version of the chat.