I've written an IRC bot in java, but I am having the following problem : I have a help function that returns all the functions of bots (usage, example,...) to a user in private message.
The problem is that if I send this line by line, messages get queued, and it can take up to 10 seconds to send one help request.
Now I solved this by putting all the help functions in one message, but everything of course is put on 1 line. This is negative for readability.
Is there a way to format messages using the irc protocol and especially is there a character for linebreak ? (/n from java does not work)
And if there is no such option, what would the best way be to make it more readable ?