Page 1 of 1

Channel forward

Posted: Tue Feb 22, 2005 11:12 pm
by BaD2005
hi @all
what is the korrekt syntax ?

when a channel is full then users forcing to another channel

I know +L but in dont know the right syntax :(

Please help

Or is it possible to make to general forward to the new channel


?

Posted: Tue Feb 22, 2005 11:26 pm
by Sean
/mode #chan +L #chan2

You also need to set +l for it to work. When the limit is reached it will redirect people to chan2.

Posted: Tue Feb 22, 2005 11:34 pm
by BaD2005
thxx for this turbo replay
yes i have forgotten the +i1

thx

Posted: Tue Feb 22, 2005 11:35 pm
by Sean
No problem :D glad I could help.

Posted: Wed Feb 23, 2005 5:28 am
by commandr
set directly: /mode #chan1 +lL 1 #chan2

Re: Channel forward

Posted: Wed Feb 23, 2005 10:00 am
by Dukat
BaD2005 wrote:Or is it possible to make to general forward to the new channel
That's very easy (and you don't even need +Ll):
Add a Deny Channel Block to you unrealircd.conf, denying the old channel and redirecting to the new one, like

Code: Select all

deny channel {
	channel "#olchan";
	reason "We moved to #newchan";
	redirect "#newchan";
};

http://www.vulnscan.org/UnrealIRCd/unre ... annelblock

Posted: Wed Feb 23, 2005 6:17 pm
by Ron2K
One other thing: unless you have OperOverride, you need to be +q in the channel to set chmode +L (being +o isn't good enough).