!nickinfo (gets nick info)
Platform: mIRC
Published Mar 17, 2011
Updated Mar 18, 2011
Hello hawkee, Today i publish my !nickinfo script.
It says if the nick is:
- Online.
- Offline.
- avaible for registering.
- Frozen/Suspended.
on *:Text:!nickinfo *:#:{
set %nickinfonick $2
set %nickinfochan $chan
ns info $2
}
on *:notice:*:*:{
if ($nick == NickServ) {
if (nickinfo isin $1-) { msg %nickinfochan The nick %nickinfonick is currently frozen! | halt }
if (may not be isin $1-) { msg %nickinfochan The nick %nickinfonick may not be registered or used. | halt }
if (is online from isin $1-) { msg %nickinfochan The nick %nickinfonick is currently 3Online | halt }
if (last seen address isin $1-) { msg %nickinfochan The nick %nickinfonick is currently 4Offline | halt }
if (isn't registered isin $1-) { msg %nickinfochan This nick is availbe for Registering. | halt }
if (is currently online. isin $1-) { msg %nickinfochan The nick %nickinfonick is currently 3Online | halt }
}
}