simple auto ghosting
Platform: mIRC
Published Feb 02, 2007
Updated Feb 02, 2007
pretty simple, it will ghost your nickname and then change to that nick after it is finished
**must have reconenct on disconnect turned on
**must use a server with NickServ
**NICKNAME must be registered, NICKNAME2 isnt required
on *:start:{
if (%nicka == $null) {
set %nicka $$?"what is your main nickname?"
if (%nicka2 == $null) {
set %nicka2 $$?"what is your secondary nickname?"
if (%pwd == $null) {
set %pwd $$?"what is your password?"
nick %nicka2
}
}
}
else nick %nicka2
}
on *:connect:{
ns ghost %nicka %pwd
.timer 1 5 nick %nicka
}
on *:disconnect:{
nick %nicka2
}