- Automatically detect phishing links in your Discord server and delete them using the Phisherman API
- Using the Dashboard set banned words and/or use our default list of banned words to protect your Discord server.
- Welcome new people that join your Discord server and set a custom message in the Dashboard
- Change the colour Evie uses for every embed in your server on the Dashboard
Last updated: May 24th, 2022
Evie is 100% open source and the code deployed to production is 100% identical and not tampered with.
- Usage Data: May include information such as your browser type, browser version, the pages of our website that You visit, the time and date of your visit, the time spent on those pages, unique device identifiers, anonymous slash commands you run (with the channel name logged for debugging purposes) and other diagnostic data.
Evie™ uses a cache system to quickly respond to messages, this is a guide on how to get your name in commands like /leaderboard
Everytime you run a command that searches Evie's cache such as /leaderboard
Evie will look into her cache which is a list of users that have used commands since her last restart. (You don't lose any Evie coins it's just reseting her "cache" so she can respond faster)
The quickest way to get into the cache is to just run /bal
I hereby claim:
- I am twisttaan on github.
- I am tristancamejo (https://keybase.io/tristancamejo) on keybase.
- I have a public key ASCJT5llhyz0xl47SMQFQml8MzaL73o5rJETRkoC5IBe1wo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"$ref": "#/definitions/Welcome7", | |
"definitions": { | |
"Welcome7": { | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { | |
"name": { | |
"type": "string" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"$ref": "#/definitions/Welcome6", | |
"definitions": { | |
"Welcome6": { | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { | |
"name": { | |
"type": "string" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const testArray: number[] = []; | |
for (let i = 0; i < 100; i++) { | |
testArray.push(i); | |
} | |
for (const { index, element } of testArray.map((element, index) => ({ | |
index, | |
element, | |
}))) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/** @ts-check */ | |
import { exec } from "node:child_process"; | |
import { readFile } from "node:fs/promises"; | |
import { createInterface } from "node:readline"; | |
/** | |
* @param {string} question |