quote:
Originally posted by fatfreechicken
Also, after quickly looking at your code, the lines
code:
var explorer = '/explorer ';
if(Message.substring(0,8)==explorer)
should be
code:
var explorer = '/explorer';
if(Message.substring(0,9)==explorer)
Hope this helps.
I'm fairly certain it only needs 8, not 9... It's zero based