Skip to content
Permalink
f110250b99
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 16 lines (16 sloc) 845 Bytes
commands = {
"server" : "Displays the saved server address",
"status" : "Gets the status of the server along with players (players only display if the server allows it)",
"minecraftNickname" : "Sets the nickname of a username to allow easy recognition when using the status command",
"download" : "Gives the world download link if there is one available",
"map": "Gives the map link if there is one available (usually using dynmap)",
"settings" : "Sets the server settings of this bot. Requires the role 'Minecraft Bot' to change",
"source" : "Gives the bot source code from Github",
"share" : "Add the bot to other servers",
"botinfo" : "Get information on the bot",
"version" : "Gives the bot release version"
}
msg = ""
for command in commands:
msg = "{}* {} - {}\n".format(msg, command, commands[command])
print(msg)