24 lines
1.0 KiB
JavaScript
24 lines
1.0 KiB
JavaScript
module.exports = {
|
|
prices: (bot, msg, logger) => {
|
|
const subPrice = "- subscription prices";
|
|
if (msg.text && msg.text.toString().toLowerCase() === subPrice) {
|
|
logger.info("ID - " + msg.from.id + " First Name - " + msg.from.first_name + " Got subscription Prices");
|
|
bot.sendMessage(msg.chat.id, `
|
|
PREMIUM PLUS ----£30\n
|
|
VIP-----------------------£25\n
|
|
OLD PREMIUM -----£17\n
|
|
BLUEMOON ---------£15\n
|
|
KDB --------------------£14\n
|
|
GOLD ------------------£13\n
|
|
TECHNOID -----------£13\n
|
|
BRONZE --------------£10\n
|
|
SOL ---------------------£10`)
|
|
.then(() => {
|
|
return bot.sendMessage(msg.chat.id, "All of these prices are for 12 Month subscription subs").then(() => {
|
|
return bot.sendMessage(msg.chat.id, "Keep an eye out though because we offer special deals on different subs from time to time.")
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|