mIRC Home    About    Download    Register    News    Help

Print Thread
M
Me2k3
Me2k3
M
Id like to create a friends list so when someone enters the channel mirc will scan for the nick they are using, if the nick is in the list they stay but if it isnt they are kicked and banned...how do u do this also if an intruder is detected would u be able to message the chan saying an intruder was kicked and banned - ...if anyone has the time - thanx!

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
To all your friends, use this:

/auser 2 $address(<nick>, 11)

Then, use

on @!+1:JOIN:#channel: {
/kick $chan $nick Sorry, but you are not a friend!
}

M
Me2k3
Me2k3
M
Doesn't seem to work

R
rpg_gamer
rpg_gamer
R
did u put the name of the channel u r in or did u put it in as he wrote it that might be why...

P
pheonix
pheonix
P
put this in remote:

menu nicklist {
add friend: auser friend $address($$1,1)
}
on *:JOIN:#:{
if ($level($address($nick,1)) != friend) {
mode # +b $address($nick,1)
kick # $nick sorry not a friend
}
}

R
rpg_gamer
rpg_gamer
R
again phoenix uses sumthing i cant do to surpass me grin


Link Copied to Clipboard