Hello,
Is it possilbe for the bot to go to the next line within the same message?
Now i'm doing this:
bot.sendMessage(msg.channel, "Online users:");
bot.sendMessage(msg.channel, "user 1");
bot.sendMessage(msg.channel, "user 2:");
but sometimes the order is incorrect
would be nice if i could do something like this:
bot.sendMessage(msg.channel, "Online users:" + '<br>' + "user 1" + '<br>' + "user 2" );
Thanks,
kevin
"Line 1 \n Line 2"
use \n to create a new line, is like <br>
could people stop responding to old and already solved/closed issues, jeez,
lol
Most helpful comment
use
\nto create a new line, is like<br>