mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2002
Posts: 2
C
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: Dec 2002
Posts: 2
i've been looking for a mode that disables users to private message me when they are not on the same channel as i am.
any help would be appreciated.
Thanks laugh

Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
There is no such mode (atleast not on any servers I've ever seen), a script could be made to do it though.

Joined: Dec 2002
Posts: 9
G
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
G
Joined: Dec 2002
Posts: 9
I agree with Collective about this. If you want to learn something about mIRC scripting yourself you could check for "on TEXT","ison" and "/halt" in the mIRC help wink


______________________________
Twistification IRC
Joined: Dec 2002
Posts: 1,321
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,321
Modes are also extremely IRCd (the server software) dependent; not all modes are used for the same things on different networks. Such a mode might even exist in some IRCd, but it's rather unlikely.


DALnet: #HelpDesk and #m[color:#FF0000]IR[color:#EEEE00]C
Joined: Dec 2002
Posts: 2
C
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: Dec 2002
Posts: 2
alright. thanks guys.

Joined: Dec 2002
Posts: 145
G
Vogon poet
Offline
Vogon poet
G
Joined: Dec 2002
Posts: 145
This will close automatically the pm window if $nick is not on the same channel.

on *:open:?:*: {
if ($comchan($nick,0) == 0) close -m $nick
}

Joined: Dec 2002
Posts: 699
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Dec 2002
Posts: 699
You can prevent the window from opening at all smile
on *^:open:?:if (!$comchan($nick,0)) halt

Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
Some IRCd's have a usermode that will block all private chats. I'm not sure about blocking private chats from those outside the room though.

Joined: Dec 2002
Posts: 145
G
Vogon poet
Offline
Vogon poet
G
Joined: Dec 2002
Posts: 145
Tx smile


Link Copied to Clipboard