In status window I get this when any user write something?
* /if: close bracket not found (line 2, soundscript)

My line (the complete code) looks like this
Code:
 on *:text:*:#:{
  if ($chan == #chan1) {
    if ($nick == me1) {
      var %string = hello
      if (%string isin $1-) { splay sound35kb.wav }
    }
    elseif ($chan == #chan2) {
      if ($nick == me2) {
        var %string = call
        if (%string isin $1-) { splay sound35kb.wav }
      }
      elseif ($chan == #chan3) {
        if ($nick == me3) {
          var %string = there
          if (%string isin $1-) { splay sound35kb.wav }
        }
         


Same thing here. When I tested the first part of the code it works
on *:text:*:#:{
if ($chan == #chan1) {
if ($nick == me1) {
var %string = hello
if (%string isin $1-) { splay sound35kb.wav }
}

When I add the rest "elseif" --> Nothing will work. Not even the first one.