├── .gitignore ├── README.md ├── LICENSE └── config └── bot.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CommanderBot 2 | The Minecraft Commands personal assistant. 3 | 4 | **NOTE:** This repository holds the data for the **old** Minecraft Commands bot that has been retired. See https://github.com/CommanderBot-Dev/commanderbot-py for the source code of its successor. 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Arcensoth 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /config/bot.json: -------------------------------------------------------------------------------- 1 | { 2 | "servers": { 3 | "mcc": { 4 | "id": "154777837382008833", 5 | "log_channel": "614509905889460235" 6 | } 7 | }, 8 | "command_prefix": ">", 9 | "description": "The Minecraft Commands personal assistant.", 10 | "notify_on_recovery": false, 11 | "managers": [ 12 | "135616361157099520", 13 | "127163300348821504", 14 | "187961803844747264", 15 | "840768752479109120" 16 | ], 17 | "staff_roles": [ 18 | "154919514553712640", 19 | "247061977136889856" 20 | ], 21 | "extensions": [ 22 | "cogbot.extensions.vote", 23 | "cogbot.extensions.mcnbtdoc", 24 | "cogbot.extensions.mcblock", 25 | "cogbot.extensions.jira", 26 | "cogbot.extensions.quote", 27 | "cogbot.extensions.status", 28 | "cogbot.extensions.nick", 29 | "cogbot.extensions.custodian", 30 | "cogbot.extensions.ping" 31 | ], 32 | "extension_state": { 33 | "cogbot.extensions.mcnbtdoc": { 34 | "version_database": "https://raw.githubusercontent.com/Yurihaia/mc-nbtdoc/{}-gen/build/generated.json", 35 | "database": "https://raw.githubusercontent.com/Yurihaia/mc-nbtdoc/generated/build/generated.json", 36 | "registry_database": "https://raw.githubusercontent.com/Ersatz77/mcdata/master/generated/reports/registries.json", 37 | "ac_limit": 600, 38 | "search_limit": 20, 39 | "field_limit": 10 40 | }, 41 | "cogbot.extensions.mcblock": { 42 | "database": "https://raw.githubusercontent.com/Ersatz77/mcdata/master/generated/reports/blocks.json" 43 | }, 44 | "cogbot.extensions.nick": { 45 | "servers": { 46 | "mcc": { 47 | "enabled": true 48 | } 49 | } 50 | }, 51 | "cogbot.extensions.custodian": { 52 | "servers": { 53 | "mcc": { 54 | "roles": ["154919580563800064"], 55 | "free_for_all": 60 56 | } 57 | } 58 | } 59 | } 60 | } 61 | --------------------------------------------------------------------------------