Okay I want to start out with making a very small hash file. I have a checkbot alias:


Code:
botcheck %nick %host %chan

alias botcheck {
  if ($istok(1.2.3.4 5.6.7.8 2.3.4.5 6.7.8.9 3.4.5.6 7.8.9.0, $2, 32)) {
    echo 4 -s $1 at $2 on $3
    echo 4 -s -
    msg $3 bot: $1
  }
  return
}


So to change it to use a hash table:

Code:
botcheck %nick %host %chan

alias botcheck {
  if ($hfind(bots, $2, 1)) {
    echo 4 -s $1 at $2 on $3
    echo 4 -s -
    msg $3 bot: $1
  }
  return
}


I registered; you should too.