error
unknown
javascript
3 years ago
307 B
8
Indexable
bot.command("value", (ctx) => {
let input = ctx.message.text.split(" ");
if (input[0].length != 1) {
ctx.reply("PUT BIN");
return;
} else if (input[0].length > 6) {
ctx.reply("> 6");
return;
} else if (input[0].length < 6) {
ctx.reply("< 6");
return;
}
})Editor is loading...