Skip to content

Commit

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

* feat: add map commands
  • Loading branch information
HenrySpartGlobal authored Mar 23, 2024
1 parent 2eb3073 commit 0cc3a8d
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions src/data/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,50 @@ const commands = [
"/rolling_queue Enabled",
]
},
{
"name": "maps",
"type": "Admin",
"description": "Enable maps for a Specific game",
"usage": [
"/maps [map_selection] [game]",
],
"examples": [
"/maps Random Custom",
]
},
{
"name": "add_map",
"type": "Admin",
"description": "Add a map to your server map pool",
"usage": [
"/add_map [name] (game_mode) [image_url] [game]",
],
"examples": [
"/add_map Rust Domination https://i.imgur/abcdef.jpg Custom",
]
},
{
"name": "disable_maps",
"type": "Admin",
"description": "Disable the map feature",
"usage": [
"/disable_maps [game]",
],
"examples": [
"/disable_maps Custom",
]
},
{
"name": "remove_map",
"type": "Admin",
"description": "Remove a map",
"usage": [
"/remove_map [map_name]",
],
"examples": [
"/remove_map Rust",
]
},
{
"name": "show_mmr",
"type": "Admin",
Expand All @@ -510,6 +554,7 @@ const commands = [
]
},


// ~ Set-up
{
"name": "setup",
Expand Down Expand Up @@ -674,6 +719,30 @@ const commands = [
"/refresh_challenges",
]
},
{
"name": "list_maps",
"type": "General",
"description": "List all maps available on the server",
"usage": [
"/list_maps",
],
"examples": [
"/list_maps",
]
},
// ~ Games
// {
// "name": "champion",
// "type": "LoL",
// "description": "Select your champion. Only works inside a lobby channel",
// "usage": [
// "/champion [name]",
// ],
// "examples": [
// "/champion Teemo",
// ]
// },

// ~ Premium
{
"name": "set_status",
Expand Down

0 comments on commit 0cc3a8d

Please sign in to comment.