Code:
on *:start:{
  if !$hget(auto-join) { .hmake auto-join 100 }
  if $exists($scriptdirauto-join.hsh) { .hload auto-join $scriptdirauto-join.hsh }
  var %a = 1, %b = $hget(auto-join,0).item
  while %a <= %b {
    .scon -at1 check_network $!serverip %a
    inc %a
  }
}
alias -l check_network {
  if $1 == $hget(auto-join,$2).data {
    .join $hget(auto-join,$2).item
  }
}

Amend the hash table name as appropriate. Please note that this is just written up quickly, and probably isn't the most efficient method of doing it.