owobot/plugins/commands/about.js

15 lines
484 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')
2024-07-16 09:56:08 -04:00
const settings = require("../../settings.json")
2024-07-06 11:02:11 -04:00
module.exports = {
execute: function (c) {
c.reply('{"text":"UBot - a minecraft bot made by a \\"baby\\""}');
c.reply('{"text":""}');
2024-07-16 09:56:08 -04:00
c.reply('{"text":"Version '+settings.version+'"}');
2024-07-06 11:02:11 -04:00
c.reply('{"text":""}');
2024-07-16 09:56:08 -04:00
c.reply('{"text":"To view system information, run the command \\"serverinfo\\"."}')
2024-07-06 11:02:11 -04:00
},
desc: 'About the bot',
usage: ''
}