Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nealarch01/wordlestatsdiscordbot
Discord bot that saves information of a Wordle game from the share results message
https://github.com/nealarch01/wordlestatsdiscordbot
Last synced: about 17 hours ago
JSON representation
Discord bot that saves information of a Wordle game from the share results message
- Host: GitHub
- URL: https://github.com/nealarch01/wordlestatsdiscordbot
- Owner: nealarch01
- Created: 2022-06-27T21:57:11.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-16T19:39:51.000Z (over 2 years ago)
- Last Synced: 2023-03-08T12:27:23.970Z (almost 2 years ago)
- Language: TypeScript
- Homepage:
- Size: 1.91 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wordle stats tracker discord bot
When a user shares their daily Wordle, the bot will save the information.
Users can also show off their stats using a command and view leaderboards (Work in progress)
Required Permissions ID: 346176
(TypeScript, Node.js, MySQL)
## Database
Table generated from dbdiagram.io```sql
Table user as u {
user_id string [pk, increment]
streak int
}Table game as g {
game_id int [pk]
word varchar
}// Junction table
Table played as p {
user_id string [ref: > u.user_id]
game_id int [ref: > g.game_id]
attempts int
green_count int
yellow_count int
black_count int
}
```![Database image](/Assets/db.png)
## Images & videos
![img1](/Assets/sc2.png)https://user-images.githubusercontent.com/73256760/176044911-1ec75be4-2f13-4294-ab04-ee02a2f15e83.mov