owobot/plugins/commands/about.js

16 lines
541 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) {
2024-07-19 11:47:43 -04:00
c.reply('{"text":"'+settings.name+' - a minecraft bot made by 77c8f4699b732c11 / a5a06d596f15c7db"}');
2024-07-06 11:02:11 -04:00
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',
2024-07-19 11:48:07 -04:00
usage: '',
aliases: ["info"]
2024-07-06 11:02:11 -04:00
}