> This is in ircd/s_user.c:
>
> if (!(setflags & FLAGS_CHSERV) && !IsOper(Optr))
> ClearChannelService(sptr);
>
> Compile:
>
> make[1]: Binnengaan van map `/home/maartenz/IRC/ircu2.10/ircd'
> gcc -g -O3 -pipe -I. -I.. -I../include -c s_user.c -o s_user.o
> s_user.c: In function `set
> Is it possible to make users +k ?? With a patch or something ...
>
> Tnx in advance ;-)
> Ace
>
Hello,
to allow global operators to use umode +k, in s_user.c you need to modify in
set_user_mode() function this:
- if (!(setflags & FLAGS_CHSERV))
+ if (!(setflags & FLAGS_CHSERV) && !IsOper(
Is it possible to make users +k ?? With a patch or something ...
Tnx in advance ;-)
Ace