Add some goofy emotes

This commit is contained in:
Christopher Cookman 2023-09-12 13:50:17 -06:00
parent 621b590118
commit 7c20c269cd
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -55,7 +55,7 @@ tf2.on("systemMessage", (msg) => {
console.log(`${colors.yellow("[TF2]")} New System Message: ${msg}`)
notif_hook.send({embeds: [
{
description: msg,
description: `<:Messages:1151242960655089744> ${msg}`,
color: 0x3498DB
}
]})
@ -65,7 +65,7 @@ tf2.on("itemBroadcast", (msg, username, wasDestruction, defindex) => {
console.log(`${colors.yellow("[TF2]")} New Item :$ {msg}`);
pan_hook.send({content: wasDestruction?"@everyone":"",embeds: [
{
description: msg,
description: `<:Alert:1151242961485562008> ${msg}`,
color: wasDestruction?0xff0000:0xF1C40F
}
]})
@ -75,7 +75,7 @@ tf2.on("displayNotification", (title, body) => {
console.log(`${colors.yellow("[TF2]")} New Notif: ${title}: ${body}`)
ring_hook.send({embeds: [
{
description: body,
description: `<:Alert:1151242961485562008> ${body}`,
color: 0xF1C40F
}
]})