Easy IRC Configuration

By HawkIRC on Mar 15, 2008

This will allow you to config IRC easy.

Copy and paste the code into your Remote section. Save it, exit it. Right click in a channel or Status window, and Configuration should be there, click it. And start your configuration.

; Created By Hawk  ;
;  Kamuix.com      ;
on *:START: {
  if (%setup == complete) {
    nick %nickname
    server %server
  }
}
on *:CONNECT: {
  msg nickserv identify %password
}
dialog config {
  title "Hawk Configurator"
  size -1 -1 93 120
  option dbu
  edit "Nickname", 1, 10 31 70 10
  edit "Password", 3, 10 55 70 10
  edit "Server", 9, 10 81 70 10
  text "Please edit the boxes below with your information.", 4, 10 5 80 20, center
  box "Nickname", 5, 4 20 82 23
  box "Password", 6, 4 45 82 24
  box "Server", 10, 4 71 82 23
  button "Save", 7, 25 98 37 10, ok cancel
  text "Made By Hawk", 12, 55 112 100 100
}
menu * {
  Configuration: dialog -m config config
}
on *:dialog:config:sclick:7: {
  set %nickname $did(config,1)
  set %password $did(config,3)
  set %server $did(config,9)
  set %setup complete
}

Comments

Sign in to comment.
F*U*R*B*Y*   -  Mar 15, 2008
on *:START: {
  if (%setup == complete) {
    nick %nickname
    server %server
  }
}

%setup != complete..... nothing happens ;)

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.