on *:join:#:{
if ($iscpnick($nick)) && ($address != $iscpnick($nick)) { access $chan add deny $address 1440 :no cloning | kick $chan $nick no cloning (24 hour ban) }
else writeini cloneprot.ini protected $nick $address
}
menu nicklist {
-
Clone Protection
.Add User:writeini cloneprot.ini protected $$1 $$ial($1).addr
.Remove User:remini cloneprot.ini protected $$1
-
}
alias iscpnick { return $readini(cloneprot.ini,protected,$1) }
put that in a new remote file, then go thru the users in your nicklist and add them all to the clone protection. it will also add anyone who joins the room automatically, if it hasn't seen their nick before.
i think.
Edited May 7, 2005 8:07 AM by vexation
on *:join:#:{
if ($read(~script.trust.txt,s,$msngkshort($nick))) || ($nick == $me) halt
if ($iscpnick($nick)) && ($address != $iscpnick($nick)) { access $chan add deny $address 1440 :no cloning | kick $chan $nick no cloning (24 hour ban) }
}
menu nicklist {
-
Clone Protection
.Add User:writeini cloneprot.ini protected $$1 $$ial($1).addr
.Remove User:remini cloneprot.ini protected $$1
-
}
alias iscpnick { return $readini(cloneprot.ini,protected,$1) }
try that
Edited May 8, 2005 2:41 AM by vexation