Okay im trying to add a command where when you type !list you get a message PM'd to you of w/e I put in the !list text document in my bots mirc directory here is what I have on it so far..

Code:
on *:text:911 *:#chi: {
  var %u = $nick($chan,0)
  while (%u) {
    set %n $iif(%n == $null,$nick($chan,%u) $+ $chr(44),$+(%n,$nick($chan,%u),$chr(44)))
    dec %u
    if ($gettok(%n,0,44) > 9) {
      .msg $+(%n,#chi) $+(4,$2,5) Is invading our country!!
      unset %n
    }
  }
  .msg $+(%n,#chi) $+(4,$2,5) Is invading our country!!
  unset %n
}
on *:join:#CHI:/msg #CHI $+(15,$mid($nick,1,1),14,$mid($nick,2),15's) 2assets now belong to 14CHI


now keeping in mind what I said at the start of this thread I tried to add this

Code:
on *:text:*:#C.H.I: {
  if (!list isin $1) .play $nick !list.txt 2000
}


It will not work, I have a text file named !list and I even put that last code in a new remote file still no dice can anyone help? confused