owobot/plugins/commands/about.js

16 lines
605 B
JavaScript
Raw Normal View History

2024-07-06 11:02:11 -04:00
// 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: ''
}