| Arcades | Library | Travel | MP3 | Directory | Horoscope | Downloads | Mobile | Movies | Gallery | PHP Group |
| mIRC :: SCRIPTING & HELP mIRC Scripting help, General help, Tips and Tricks! |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
|
||||
|
||||
|
;return nicks like: @Nick@ for ops , +nick+ for voices , and a little circle for the regular users.
Code:
on *:INPUT:#: {
if ($left($1,1) != /) {
var %c = 1, %t
while (%c <= $0) {
if ($gettok($1-,%c,32) ison $chan) { %t = %t 12 $+ $prefix($ifmatch,#) $+ 4 $+ $ifmatch $+ 12 $+ $prefix($ifmatch,#) }
else { %t = %t $gettok($1-,%c,32) }
inc %c
}
msg $chan %t
halt
}
}
alias prefix { if ($1 isop $2) { return $chr(64) } | elseif ($1 isvoice $2) { return $chr(43) } | elseif ($1 isreg $2) { return $chr(176) } }
NON COLOUR VERSION:
on *:INPUT:#: {
if ($left($1,1) != /) {
var %c = 1, %t
while (%c <= $0) {
if ($gettok($1-,%c,32) ison $chan) { %t = %t $+ $prefix($ifmatch,#) $+ $+ $ifmatch $+ $+ $prefix($ifmatch,#) }
else { %t = %t $gettok($1-,%c,32) }
inc %c
}
msg $chan %t
halt
}
}
alias prefix { if ($1 isop $2) { return $chr(64) } | elseif ($1 isvoice $2) { return $chr(43) } | elseif ($1 isreg $2) { return $chr(176) } }
__________________
Last edited by Cult; 21-11-2005 at 08:18 PM. |
|
#2
|
||||
|
||||
|
Re: nick completer
Same comments, use LOOPS check Nc/Acro for more information.
|
|
#3
|
||||
|
||||
|
Re: nick completer
anmlhckr same reply! prove u`r self better than this. it`s working right? so, go fix u`r own mistakes in the Nc/Acro section
![]()
__________________
|
|
#4
|
||||
|
||||
|
Re: nick completer
There are no mistakes while am pasting it here, it got errors, ill give ya a link if u want it, and i guess i post a link of nomorepasting.com
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Drone/Spam nick kicker (FIXED) | anmlhckr | mIRC :: SCRIPTING & HELP | 42 | 07-08-2008 07:37 AM |
| Nick flood kicker.. | Mohammad | mIRC :: SCRIPTING & HELP | 12 | 19-04-2007 03:20 PM |
| who have the coolest nick name from girls? | MaRo | The Lounge | 53 | 02-04-2007 08:39 AM |
| Nick Completer. | shiah | mIRC :: SCRIPTING & HELP | 1 | 05-09-2005 07:50 AM |