generated from KevinNovak/Discord-Bot-TypeScript-Template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from tresabhi/1.10.0
- Loading branch information
Showing
124 changed files
with
1,323 additions
and
793 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 |
---|---|---|
|
@@ -10,4 +10,5 @@ dist.zip | |
commands.txt | ||
/test.* | ||
/docs/.vitepress/dist | ||
/docs/.vitepress/cache | ||
/docs/.vitepress/cache | ||
servers.csv |
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
"cleandist", | ||
"customperiod", | ||
"Everytime", | ||
"fullstats", | ||
"fuzzysort", | ||
"kranvagn", | ||
"outfile", | ||
|
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
// https://vitepress.dev/guide/custom-theme | ||
import { h } from 'vue' | ||
import Theme from 'vitepress/theme' | ||
import './style.css' | ||
import { h } from 'vue'; | ||
import Theme from 'vitepress/theme'; | ||
import './style.css'; | ||
|
||
export default { | ||
extends: Theme, | ||
Layout: () => { | ||
return h(Theme.Layout, null, { | ||
// https://vitepress.dev/guide/extending-default-theme#layout-slots | ||
}) | ||
}); | ||
}, | ||
enhanceApp({ app, router, siteData }) { | ||
// ... | ||
} | ||
} | ||
}, | ||
}; |
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,37 @@ | ||
# Blitzkrieg 1.10.0 | ||
|
||
This update addresses many readability issues that users have reported over time. | ||
|
||
## Changes | ||
|
||
- `/ownedtanks` | ||
- Tanks are now displayed in two columns | ||
- Collector and premium tanks now have their own colors | ||
- Tank types are also displayed | ||
- A stylistic image of the tank is also displayed for each tank to the right | ||
- `/fullstats` | ||
- Was previously called `/statsfull`; this was changed to avoid the clutter that would show up when searching for `/stats` | ||
- Added four catagories in which all the stats are sorted into | ||
- Catagories now have backgrounds to compartmentalize them | ||
- `/evolution` | ||
- Gave the axis markings a high contrast color | ||
- Added a label for the x axis affirming that it is plotted over the number of battles | ||
- `/today` | ||
- Added a border to all the rows to compartmentalize them | ||
- This command can now generate embeds too | ||
- Removed survivability | ||
- Added a limit option to cut off after a certain number of tanks played (this is mainly intended to be used by streamers to limit the content of the embeds) | ||
- Tanks are now displayed in order of the most recent battle | ||
- `/help` | ||
- A significant amount of subcommands were added | ||
- These new subcommands now return normal Discord messages instead of embeds in favor of readability | ||
- The contents of the replies are directly fetched from the Blitzkrieg documentation | ||
- Time zones | ||
- What is considered a "day's worth of battles" has been adjusted as the "reset time" was the same for all Blitz servers | ||
- The reset time is now dependent on the server of the player | ||
- Use `/help timezones` to learn more | ||
|
||
## Technical Changes | ||
|
||
- All themes have been merged to leverage Bepaint's suffixes | ||
- Switched to Node module resolution |
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,10 @@ | ||
# About | ||
|
||
Blitzkrieg is a multipurpose bot for anything and everything World of Tanks Blitz. | ||
|
||
- Track statistics | ||
- Find inactive players in a clan | ||
- Lookup owned tanks | ||
- Create embeds for streams | ||
- Track a player/tanks statistical evolution | ||
- ...and a variety of other similar things |
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,23 @@ | ||
# Embeds | ||
|
||
Embeds are generated by a few commands as a URL that can be loaded in a browser/streaming software. | ||
|
||
## Creating Embeds | ||
|
||
1. Use a command of your liking (for example, `/stats`). | ||
2. Customize the command however you like and the URL generated for the embed will match your needs. | ||
3. Send the command and when the bot is "done thinking," an "Embed" button will appear below the bot's reply. | ||
|
||
## Using Embeds in Streaming Softwares | ||
|
||
1. Click on the "Embed" button. | ||
2. Copy the URL from your browser. | ||
3. Paste the URL into a Browser Source. | ||
4. Set the refresh rate/FPS to something very low like `0.0167` (that's 1 frame every 60 seconds). | ||
|
||
## How Embeds Behave | ||
|
||
- They load like any normal website albeit with a significant delay. | ||
- They auto refresh every `60s`. | ||
- All embeds and images generated by Blitzkrieg have a width of `640px` but the height varies and must be found manually through trial and error. | ||
- It's okay to have a Browser Source that has a height larger than needed as Blitzkrieg embeds are transparent. |
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,10 @@ | ||
# Inviting the Bot | ||
|
||
It's quite simple really. Just follow the steps below: | ||
|
||
1. Join a Discord server that already has Blitzkrieg installed or [the official Discord Server](https://discord.gg/nDt7AjGJQH). | ||
2. Click on the bot's profile. | ||
3. Click the "Add to Server" button under the bot's name and ID. | ||
4. Select what server you want it in and see what permissions you seem fit for the bot. | ||
|
||
Voila! You're ready to go. |
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,9 @@ | ||
# Timezones | ||
|
||
What is considered a "day's worth of games" is determined by the reset time. The reset time is generally at midnight everyday after which newer games are counted towards the next day. Reset times vary from region to region: | ||
|
||
- North America: `UTC-5:00` (Central North American Time midnight) | ||
- Europe: `UTC+1:00` (Central European Time midnight) | ||
- Asia: `UTC+7:00` (Central Asia Standard Time midnight) | ||
|
||
**Reset times are different from Blitz Stars** (Blitz Stars resets at 5:00 am locally relative to the user opening their website). Inconsistencies with Blitz Stars only occur with sleep-deprived players and players who play in the wrong region. |
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
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
Oops, something went wrong.