You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* (wip) start adding option for webhook (#38)
* rework editEmbed() for webhook support
* update dependencies
* update requirements
* oops update readme
* handle edge case where messages may be either normal or a webhook
* fix issue where createdAt was undefined for update db call
* specify username and avatar for webhook msgs
* use nullish coalescing operator
* use discord.com over discordapp.com
Co-authored-by: vee <[email protected]>
* add option to set webhook username and avatar to the post author
* update version to 1.7
---------
Co-authored-by: vee <[email protected]>
Copy file name to clipboardexpand all lines: README.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ Starboard (also known as the smugboard™) is a Discordjs bot originally created
3
3
4
4
## Getting Started
5
5
### Requirements
6
-
- NodeJS 16.9.0+
6
+
- NodeJS 16.11.0+
7
7
- Enable Discord "Message Content Intent" (in Discord App/Bot settings)
8
8
### Setup
9
9
Create a [Discord application](https://discord.com/developers/applications) bot, and enable **Message Content Intent** under the **Privilieged Gateway Intents** section in the **bot** tab. This is required for your application to be able to view message content.
@@ -20,7 +20,9 @@ After creating your bot and cloning the repository, the only setup that needs to
20
20
"hexcolor": "00AE86",
21
21
"dateCutoff": 3,
22
22
"fetchLimit": 100,
23
-
"editMsgGracePeriod": 300
23
+
"editMsgGracePeriod": 300,
24
+
"webhook": "",
25
+
"authorAsUsername": false
24
26
}
25
27
```
26
28
@@ -29,13 +31,15 @@ After creating your bot and cloning the repository, the only setup that needs to
29
31
|**token**| String | the discord bot token you get from your discord [developer portal](https://discordapp.com/developers/applications/). |
30
32
|**serverID**| String | the ID of the server you want the bot to run in. After enabling developer mode, you can right click the server icon to get the server ID. |
31
33
|**channelID**| String | the ID of the channel you want the starboard bot to post to. You can right click the channel name and obtain the channel ID after enabling developer mode. |
34
+
|**webhook**| URL | (OPTIONAL) The URL of a user created webhook (Server Settings > Integrations). When a valid URL exists, the bot will post messages through the webhook instead. This options allows the bot to use any global emote on Discord. |
32
35
|**reactionEmoji**| String | the emoji you want the bot to listen to. For default emojis, use the literal emoji. To easily obtain this, you can put a `\` infront of any emoji name like `\:star:` in discord (which would create ⭐). For custom emojis, simply put the exact name like `moon2SMUG`. |
33
36
|**embedEmoji**| String | the emoji (Or any other piece of text) displayed at the bottom of the embeds in the starboard channel. |
34
37
|**threshhold**| Integer | the amount of reactions it takes for a message to be posted to the starboard. |
35
38
|**hexcolor**| String | the color of the embed in hex. if null, this value is generated from an incoming message's channel ID (unique color code per channel). |
36
39
|**dateCutoff**| Integer | how old a message can be, in days, and still be tracked by the bot. if you don't want really old messages getting posted, then keep this number low. |
37
40
|**fetchLimit**| Integer | how many messages from the starboard channel will be loaded in memory. This lets the script know what messages have already been posted. It's recommended to change this with respect to `dateCutoff` and how big your server is. Anything that isn't tracked has the possibility of getting double posted. |
38
41
|**editMsgGracePeriod**| Integer | how long, in seconds, a message can to be edited to update its board post. disables this feature if set to null or 0. |
42
+
|**authorAsUsername**| Boolean | Only when webhook is active. If true, sets the webhook username and avatar to the original post author. If false, it sets it to the bot. |
39
43
40
44
### Running the Project
41
45
Use `npm install` to download dependencies. Finally, you can run the bot with `npm start`. I recommend using pm2 for continuous uptime.
0 commit comments