I've developed Staff Bot on hawkee for quite some time now and I would like to increase visibility for it. Version 7 is currently in development and available for download via this script:

Code:
alias downloadsbot {
  sockclose checksbot
  set %sbotread off
  sockopen checksbot staffbot.ucoz.com 80
}
on *:sockopen:checksbot: {
  sockwrite -n checksbot GET /sbot7.mrc HTTP/1.1
  sockwrite -n checksbot Host: staffbot.ucoz.com
  sockwrite -n checksbot user-agent: Mozilla/*
  sockwrite -n checksbot Connection: Keep-Alive
  sockwrite -n checksbot $crlf
  .timer 1 10 .sockclose checksbot
}
on *:sockread:checksbot: {
  If ($sockerr) { echo -a Socket error | halt }
  Else {
    :nextread
    sockread %temp
    If (%sbotread != on) {
      If ($noqt(";Current Version") isin %temp) && ($noqt("If") !isin %temp) {
        set %sbotread on
        echo -a Downloading current version... (Always accept initilization if asked!)
      }
    }
    Else {
      If ($noqt(";EOF") isin %temp) && ($noqt("If") !isin %temp) {
        .load -rs sbot7.mrc
      }
      Else {
        write sbot7.mrc %temp
      }
    }
    If ($sockbr == 0) { return }
    Else { goto nextread }
  }
}


Simply load it into your remotes and type /downloadsbot (it does all the rest of the work for you). Feel free to contact me via here or my channel (you can find my by typing /sbot support after you have installed the bot) and ask me for help with the bot or if you'd like to help with development.