Channel forward

These are old archives. They are kept for historic purposes only.
Post Reply
BaD2005
Posts: 13
Joined: Sat Feb 19, 2005 9:36 pm

Channel forward

Post 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


?
Sean
Posts: 6
Joined: Sun Feb 06, 2005 6:18 am
Location: Pennsylvania

Post 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.
BaD2005
Posts: 13
Joined: Sat Feb 19, 2005 9:36 pm

Post by BaD2005 »

thxx for this turbo replay
yes i have forgotten the +i1

thx
Sean
Posts: 6
Joined: Sun Feb 06, 2005 6:18 am
Location: Pennsylvania

Post by Sean »

No problem :D glad I could help.
commandr
Posts: 40
Joined: Tue Jan 04, 2005 3:18 am
Location: Argentina

Post by commandr »

set directly: /mode #chan1 +lL 1 #chan2
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Re: Channel forward

Post 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
Ron2K

Post 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).
Post Reply