mob/verb/Sayt(msg as text)
newmsg = ""
if(length(msg) > 15)
newmsg = msg // this would be the continuation after 15 characters
alert("[msg]") // he would only get a max of 15 characters alert
spawn(30)
if(newmsg && length(newmsg)) alert("[msg]") // he gets a new alert with the continuation after the 15 characters
Problem description:I'm having problem, I dont know what to do for limit the alert characters, I want to 15 per alert, if exceed 15 it would make another one even if it's only 1 characters. I'm not what I have to make to do this.