Top

Whois Dialog & Clone Detector

Please Register to submit score.
Average Score  4.5
Scores Submitted  2
Date Added  Mar 31, 2008
Last Updated  Mar 31, 2008
Tags  .txt  44  alias  bot  commands  control  dialog  irc  jonesy  jonesy44  mirc  op  script  shit  shitlist  w  watch  while  whois 

Introduction

Well, i was going to keep this script as a personal one, but since i hardly use mIRC anymore, i thought i'd share.
As the title suggests, it's a whois dialog for keeping watch on a user withought spamming your active window

Command:
Code:
/u <username>

You can change this by editing the part of the code:
Code:
alias <u> {


Report any bugs you find by posting a comment, else rate it and gimme a comment on any improvements you think could be added

WARNINGS:
#1: The "shitlist" function may contradict and interfere with other shitlist functions within other scripts (nns, invincible) therefore warning before you use that function
#2: The buttons can be very tempting to click repeatedly, beware when whoising IRCops (+W) recieve notices when you whois them. you may get killed ;-)

Thanks to napa182 and Abrai who whithout knowing have helped me jump some last parts of this script :P

Grab the Code

Comments

  (7)  RSS
Render
Comments: 5
 
mIRC Snippet:  Whois Dialog & Clone Detector
Posted on Mar 31, 2008 7:30 pm
you should provide much more error-checking than you have supplied. also, did -r and did -a can be simplified to did -ra. you can use multiple switches in one go :P i'd also try using $ialchan, it'd save you from looping through the nicklist.
jonesy44
Comments: 647
 
mIRC Snippet:  Whois Dialog & Clone Detector
Posted on Mar 31, 2008 7:58 pm
meaning returning the error if there is one ?

i know about multiple switches, however sometimes singles are required, (before a while loop for instance)

Thanks for your comment, although not sure about $ialchan ?
Render
Comments: 5
 
mIRC Snippet:  Whois Dialog & Clone Detector
Posted on Mar 31, 2008 8:03 pm
1) error checking meaning that you should check for possible errors that may occur. example: if ($did(5).text) { script } else { etc }
2) yeah, i just saw a few here and there that could be simplified, this isn't vital.
3) $ialchan(address,#channel,N) consult /help $ialchan. basically, you can use an if comparison to check if there are multiple nicks using something similar to: if ($ialchan(address,#,0) > 1) this will check if there are more than one users matching the address in the ial for #channel. like i said, /help $ialchan ;P

jonesy44
Comments: 647
 
mIRC Snippet:  Whois Dialog & Clone Detector
Posted on Mar 31, 2008 8:25 pm
taken into account. thank you
PunkTuReD
Comments: 59
 
mIRC Snippet:  Whois Dialog & Clone Detector
Posted on Apr 19, 2008 10:12 pm
nice neat dialog all i changed was
dialog -m user user
to
dialog -dm user user
PunkTuReD
Comments: 59
 
mIRC Snippet:  Whois Dialog & Clone Detector
Posted on May 9, 2008 3:00 am
its not reading voiced users due to line 312
change %voice
to %voices
PunkTuReD
Comments: 59
 
mIRC Snippet:  Whois Dialog & Clone Detector
Posted on May 9, 2008 3:04 am
awesome dialog btw :)

Please Register or Login to start posting comments.
Bottom