To randomize the order of the messages when they are shown, try finding the below block of code inside the .js file, and add to it the line in red:
Code:
//Cycle through XML object and store each message inside array
for (var i=0; i<this.contentdiv.getElementsByTagName("div").length; i++){
if (this.contentdiv.getElementsByTagName("div")[i].className=="message")
this.messages[this.messages.length]=this.contentdiv.getElementsByTagName("div")[i].innerHTML
}
this.messages.sort(function() {return 0.5 - Math.random()})
Bookmarks