Code:
on *:text:*:#: {
  if ($nick == %spamnick) {
    inc %spamtime
    if (%spamtime == 7) { 
      msg # .timeout $nick 600
      msg # $nick you're spamming too fast. slow down!
      %spamtime = 1
    }

  }
  else {
    %spamnick = $nick
    %spamtime = 1
  }
}


there you go smile