Search found 3 matches

by root
Wed Oct 26, 2005 1:04 am
Forum: Unreal 3.2 Modules
Topic: Need help with JoinPartsno module
Replies: 2
Views: 3104

Need help with JoinPartsno module

Hi,

Is it possible to hack this module for sending join/part notices to a specific Services channel, instead of all +J snomasked IRCOPs

I saw the little code made by KeMiJohN for adding logging, and thought that it would not be too difficult to make my mod ... dammed !?!! I was able to send the ...
by root
Mon Jul 12, 2004 9:16 pm
Forum: Unreal 3.2 Support
Topic: deny forbid channels
Replies: 2
Views: 1775

Oh yeah .. where's my mind !! :\ Thanks codemastr !

I've allowed a-z 0-9 and then after I've denied:

deny channel {
channel "*";
reason "forbid channel";
};

Everything works good ! :D
by root
Mon Jul 12, 2004 5:04 pm
Forum: Unreal 3.2 Support
Topic: deny forbid channels
Replies: 2
Views: 1775

deny forbid channels

Hello,

I use Unreal 3.2.1 and I would like to know if it's possible to deny all channels starting with non-alphanumeric (a-z 0-9).

Actually, I deny them one by one like:

deny channel {
channel "#!*";
reason "forbid channel";
};

deny channel {
channel "#-*";
reason "forbid channel";
};

Can I ...