owobot/plugins/commands/about.js
7cc5c4f330d47060 de78065438 Initial commit
2024-07-06 11:02:11 -04:00

15 lines
605 B
JavaScript

// This is not C source code
//const settings = require('../settings.json')
module.exports = {
execute: function (c) {
c.reply('{"text":"UBot - a minecraft bot made by a \\"baby\\""}');
c.reply('{"text":""}');
c.reply('{"text":"To view system information, run the command \\"serverinfo\\"."}')
c.reply('{"text":""}');
c.reply('{"text":"This is a new version so most features from version 9 and older have not been re-implemented."}')
c.reply('{"text":""}');
c.reply('{"text":"The first version of UBot was made in August 2020."}')
},
desc: 'About the bot',
usage: ''
}