ccashbot/commands/ccash/checkbal.js
Expand-sys 682b741691 yes
2021-07-11 10:05:38 +10:00

14 lines
371 B
JavaScript

const { checkbal } = require("../../helpers/ccash");
module.exports = {
name: "checkbal",
description: "check your ccash balance",
async execute(message, args) {
let bal = await checkbal(message.author, args[0]);
if (bal == -1) {
message.reply("User not found fucko");
} else {
message.reply(bal.toString() + " piss points");
}
},
};