Toribash
Original Post
Script for registering your channel in mIRC
Put this in the scripts/aliases and say /Chanhelper anywhere any time. Starting on a nick register one that should be easy.
/Chanhelper {

  :A
  ECHO Registering your channel!
  set %chan $?="Please enter the channel name with the #."
  /join %chan
  set %pass $?*="Please enter channel password."
  set %desc $?="Please enter channel description."
  /regscript
  else goto B

  :B
  ECHO Please enter Super Ops.
  set -u0 %SOP $?="Do you want to register a super OP (+&)? (y/n)"
  if (%SOP == y) /soperscript
  elseif (%SOP == n) goto C
  else goto C

  :C
  ECHO Please set operators.
  set -u0 %AOP $?="Do you want to register an auto OP (+@)? (y/n)"
  if (%AOP == y) /aoperscript
  elseif (%AOP == n) goto D
  else goto D

  :D
  ECHO Set privaliged.
  set -u0 %HOP $?="Do you want to register a half OP (+%)? (y/n)"
  if (%HOP == y) /hoperscript
  elseif (%HOP == n) goto E
  else goto E

  :E
  ECHO Set voice.
  set -u0 %VOP $?="Do you want to register a voiced user for your channel? (+v)? (y/n)"
  if (%VOP == y) /voperscipt
  elseif (%VOP == n) goto F
  else goto F

  :F
  ECHO request bot.
  set -u0 %BOT $?"Do you want to get Seekrit bot in? (y/n)"
  if (%BOT == y) /botscript
  elseif (%BOT == n) goto G
  else goto G

  :G
  ECHO Setting modes.
  set -u0 %private $?="Set the %chan as private? (y/n)"
  set -u0 %secret $?="Do you want %chan as secret? (y/n)"
  set %key $?="Set a key to enter the channel? (y/n)"
  set -u0 %mute $?="Set the %chan as muted? (y/n)"
  if (%secret == y) /mode %chan +s
  if (%private == y) /mode %chan +p
  if (%mute == y) /mode %chan +m
  if (%key == y) /set %keyn $?="Enter the channels key"
  if (%key == y) /mode %chan +k %key
  goto H

  :H
  ECHO Finalizing stuff
  if (%key == y) /hop %chan %key
  else /hop %chan
  ECHO Script finished.  Contact brorave or Ravenger with any bugs or     problems
  :END
}

/soperscript {
  set -u0 %nick $?="Please enter nick."
  /msg chanserv SOP %chan ADD %nick

}
/aoperscript {
  set -u0 %nick $?="Please enter nick."
  /msg chanserv AOP %chan ADD %nick

}
/hoperscript {
  set -u0 %nick $?="Please enter nick."
  /msg chanserv HOP %chan ADD %nick

}
/voperscript {
  set -u0 %nick $?="Please enter nick."
  /msg chanserv VOP %chan ADD %nick

}
/regscript {
  /msg chanserv REGISTER %chan %pass %desc

}
/botscript {
  /msg botserv ASSIGN %chan seekrit

}