-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
99 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"deepscan.vscode-deepscan", | ||
"esbenp.prettier-vscode", | ||
"editorconfig.editorconfig", | ||
"gruntfuggly.todo-tree" | ||
] | ||
} | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"editorconfig.editorconfig", | ||
"gruntfuggly.todo-tree" | ||
] | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { stripIndents } from 'common-tags'; | ||
import { DexareClient } from 'dexare'; | ||
|
||
import { CannedMessage } from '../../util/abstracts'; | ||
|
||
export default class DmAccess extends CannedMessage { | ||
content = { | ||
embeds: [ | ||
{ | ||
title: 'In order to have Craig be able to DM you, you can:', | ||
description: stripIndents` | ||
1. **DM Craig first**, that way a DM channel between you and Craig has been created and should allow Craig to DM you for future purposes. In order to do this, open @Craig#1289's profile and send anything to their DMs. | ||
2. **Allow Direct Messages in THIS SERVER only**, that way Craig (and other instances of Craig in this server) can easily DM you without being blocked from doing so. To do this, right click the Craig server and go to Privacy Settings and enable Direct Messages. | ||
3. **Check your [Message Requests](https://discord.com/message-requests)**, chances are that Craig might be in there if he tried to DM you before. Click the link provided to be taken to your message requests. [Click here](https://support.discord.com/hc/en-us/articles/7924992471191-Message-Requests) to learn more about Message Requests. | ||
` | ||
} | ||
] | ||
}; | ||
|
||
constructor(client: DexareClient<any>) { | ||
super(client, { | ||
name: 'dmaccess', | ||
description: 'Information about DM access.', | ||
aliases: ['dma'] | ||
}); | ||
|
||
this.filePath = __filename; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { stripIndents } from 'common-tags'; | ||
import { DexareClient } from 'dexare'; | ||
|
||
import { CannedMessage } from '../../util/abstracts'; | ||
|
||
export default class PatreonAccess extends CannedMessage { | ||
content = { | ||
embeds: [ | ||
{ | ||
title: 'Patreon Troubleshooting', | ||
description: stripIndents` | ||
1. Log in to the dashboard (https://my.craig.chat) and connect your Patreon account. Benefits should be applied either after connecting or within the next hour. | ||
2. [Connect your Discord account from Patreon](https://support.patreon.com/hc/en-us/articles/212052266-Getting-Discord-access). You can tell that something has changed if your role in this server changes to a supporter role. Patreon may tend to be slow to apply roles. | ||
> Note: **Make sure it's the same account you intend to use Craig.** If you try to link a different Discord and Patreon account via the dashboard, the Discord account that is linked from Patreon itself will take priority and will not apply to the one on the dashboard. | ||
3. Make sure the account you use and the one you log in with are the same one! (No alt accounts) | ||
4. Wait till the start of the next hour for benefits to apply. You can tell if you have benefits when running \`/features\`. | ||
` | ||
} | ||
] | ||
}; | ||
|
||
constructor(client: DexareClient<any>) { | ||
super(client, { | ||
name: 'patreonaccess', | ||
description: 'Explains access for patrons.', | ||
aliases: ['patronaccess', 'pa'] | ||
}); | ||
|
||
this.filePath = __filename; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { stripIndents } from 'common-tags'; | ||
import { DexareClient } from 'dexare'; | ||
|
||
import { CannedMessage } from '../../util/abstracts'; | ||
|
||
export default class Video extends CannedMessage { | ||
content = { | ||
embeds: [ | ||
{ | ||
title: 'Video?', | ||
description: stripIndents` | ||
Craig does not record cameras, screenshares, or anything other than audio from your microphone. | ||
` | ||
} | ||
] | ||
}; | ||
|
||
constructor(client: DexareClient<any>) { | ||
super(client, { | ||
name: 'video', | ||
description: 'Video?', | ||
aliases: ['screenshare', 'camera', 'cam'] | ||
}); | ||
|
||
this.filePath = __filename; | ||
} | ||
} |