These are old archives. They are kept for historic purposes only.
BaD2005
Posts: 13 Joined: Sat Feb 19, 2005 9:36 pm
Post
by BaD2005 » Tue Feb 22, 2005 11:12 pm
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 » Tue Feb 22, 2005 11:26 pm
/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 » Tue Feb 22, 2005 11:34 pm
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 » Tue Feb 22, 2005 11:35 pm
No problem
glad I could help.
commandr
Posts: 40 Joined: Tue Jan 04, 2005 3:18 am
Location: Argentina
Post
by commandr » Wed Feb 23, 2005 5:28 am
set directly: /mode #chan1 +lL 1 #chan2
Dukat
Posts: 1083 Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland
Post
by Dukat » Wed Feb 23, 2005 10:00 am
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 » Wed Feb 23, 2005 6:17 pm
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).