mmkay, so I have said script;
Code:
ON !1:TEXT:*word*:#mychan:{
inc %derek

  if(%derek == 0)
  {
    /msg $chan <color>4Please $nick , Do not use such language in here.
    
  }
  elseif(%derek == 1)
  {
    /msg $chan <color>4Pplease $nick , Do not use such language. This is the channel's final warning before someone gets kicked.
    
  }
  else
  {
    /msg $chan <color>4Goodbye $nick . You have been warned. Your ban will lift in approximately 5 minutes.
    /ban $chan $nick
    /kick $chan $nick
    /notice $me set $bnick 's unban time to 5 minutes.
  }

}


When someone types 'word' it goes thru all 3 options without stopping... how can this be solved?