Mar 16, 2007 21:24
Identify NS
For those of you that use nick serv and need to auto identify, or for thsoe that want to set up a registered nick, but dont want to go though all that code, this script is for you
requirments: mIRC
To install
1) When you are in irc, press (alt + r)
2) Go to top of window. File -> New
3) Copy and paist whats below into that blank window, and click ok
[code:1:c2c6a2ffcf]
on *:join:#winbolo:{
if (($nick == $me) && (%autoid == on)) /ns identify %password
}
menu channel,status {
Identify:dialog -m identify identify
}
dialog Identify {
title "Identify"
size 300 200 200 40
option dbu
box "Identify", 50, 5 2 190 33
button "Identify", 1, 10 10 60 20
button "Register", 2, 70 10 60 20
button "Auto-Identify", 3, 130 10 60 20
}
dialog Register {
title "Register"
size 300 200 100 50
option dbu
text "Enter Information", 3, 10 3 75 10
edit "Password Here", 1, 10 10 75 10
edit "Email Here", 2, 10 20 75 10
button "Done", 4, 18 30 60 20
}
on *:dialog:Identify:sclick:*:{
if ($did == 1) { /ns identify %password }
if ($did == 2) { dialog -m register register }
if ($did == 3) {
if (%autoid == $null) set %autoid off
if (%autoid == on) { set %autoid off | echo #winbolo ::: Auto Identify is now off }
if (%autoid == off) { set %autoid on | echo #winbolo ::: Auto Identify is now on }
}
}
on *:dialog:Register:sclick:*:{
if ($did == 4) {
set %password $did(register, 1).text
set %email $did(register, 2).text
/ns register %password %email
dialog -x register register
}
}
[/code:1:c2c6a2ffcf]
requirments: mIRC
To install
1) When you are in irc, press (alt + r)
2) Go to top of window. File -> New
3) Copy and paist whats below into that blank window, and click ok
[code:1:c2c6a2ffcf]
on *:join:#winbolo:{
if (($nick == $me) && (%autoid == on)) /ns identify %password
}
menu channel,status {
Identify:dialog -m identify identify
}
dialog Identify {
title "Identify"
size 300 200 200 40
option dbu
box "Identify", 50, 5 2 190 33
button "Identify", 1, 10 10 60 20
button "Register", 2, 70 10 60 20
button "Auto-Identify", 3, 130 10 60 20
}
dialog Register {
title "Register"
size 300 200 100 50
option dbu
text "Enter Information", 3, 10 3 75 10
edit "Password Here", 1, 10 10 75 10
edit "Email Here", 2, 10 20 75 10
button "Done", 4, 18 30 60 20
}
on *:dialog:Identify:sclick:*:{
if ($did == 1) { /ns identify %password }
if ($did == 2) { dialog -m register register }
if ($did == 3) {
if (%autoid == $null) set %autoid off
if (%autoid == on) { set %autoid off | echo #winbolo ::: Auto Identify is now off }
if (%autoid == off) { set %autoid on | echo #winbolo ::: Auto Identify is now on }
}
}
on *:dialog:Register:sclick:*:{
if ($did == 4) {
set %password $did(register, 1).text
set %email $did(register, 2).text
/ns register %password %email
dialog -x register register
}
}
[/code:1:c2c6a2ffcf]