Skip to content

Commit

Permalink
feat: add premium commands (#63)
Browse files Browse the repository at this point in the history
* feat: add premium commands

* feat: add premium commands
  • Loading branch information
HenrySpartGlobal authored Mar 6, 2024
1 parent 855e61b commit f920ef2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/app/commands/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const categoryDescriptions = {
Admin: "You must have Administrator permissions to run these commands",
"Set-Up": "Set up your server to use InHouseQueue Bot!",
General: "General commands that all members can use.",
// LoL: "League of Legends commands",
Premium: "Premium only commands",
// Overwatch: "Overwatch commands",
// Valorant: "Valorant commands",
} satisfies {
Expand Down
44 changes: 33 additions & 11 deletions src/data/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -664,17 +664,39 @@ const commands = [
]
},
// ~ Games
// {
// "name": "champion",
// "type": "LoL",
// "description": "Select your champion. Only works inside a lobby channel",
// "usage": [
// "/champion [name]",
// ],
// "examples": [
// "/champion Teemo",
// ]
// },
{
"name": "set_status",
"type": "Premium",
"description": "Set the Activity of your Bot. (Tier 3 only)",
"usage": [
"/set_status [status]",
],
"examples": [
"/set_status Just chilling",
]
},
{
"name": "update_banner ",
"type": "Premium",
"description": "Update the Queue Banner image",
"usage": [
"/update_banner [url]",
],
"examples": [
"/update_banner https://i.imgur.com/123123lhasd",
]
},
{
"name": "update_color ",
"type": "Premium",
"description": "Update the color of your Queue embed (Hexcode only)",
"usage": [
"/update_color [color]",
],
"examples": [
"/update_color #000000",
]
},
// {
// "name": "hero",
// "type": "Overwatch",
Expand Down

0 comments on commit f920ef2

Please sign in to comment.