hey guys,

i'm trying to make a trigger addy and i'm hoping if some would be able to tell me if this was a proper way to do this...

Code:
On *:text:*:#Chan: {
  if ($1 == ! $+ fliters) { 
    var %i = 1 
    while (%i <= $hget(blah,0).item) {
      %Item = $hget(blah,%i).item
      %Value = $hget(blah,%Item)
      msg $nick %Value
      inc %i 
    }
  }
  if ($1 == ! $+ active) { say - Script is %switch $nick }
}