If your UnrealIRCd is up and running but you have a question about it, then use this forum.
(NOT for installation or connecting issues! Use the other forum instead.)
Moderator: Supporters
-
Moya
- Posts: 8
- Joined: Sun Nov 26, 2017 3:41 pm
Post
by Moya » Tue Feb 13, 2018 1:38 pm
hi, (sorry for my english, i'm french

)
I've problem with SVSNOLAG in m_svsnolag.c, i want enable 'svsnolag + nick' command for opers, but I do not know how to do it.
i've read is possible, i've try 'nofakelag' in opers block in unreal conf but it not work.
thx.
-
Moya
- Posts: 8
- Joined: Sun Nov 26, 2017 3:41 pm
Post
by Moya » Tue Feb 13, 2018 2:24 pm
[edit]
In fact, my problem is to succeed in removing the "fake lag" from the server for somebody
-
Gottem
- Posts: 180
- Joined: Fri Aug 19, 2016 5:26 pm
- Location: NL
Post
by Gottem » Thu Feb 15, 2018 4:25 pm
Well first of all, this particular board is for third party modules, not built-in features. You'll want to post stuff like this in
Generic support instead.
Second: notice how the command begins with
SVS? That means it's reserved for U:Lined servers (services) only and no oper can use it directly.
Third, the
wiki page has a few pretty clear paragraphs about fake lag. Opers are already exempt, are you sure you need to disable it? If so: you don't put
nofakelag in an oper block but a
class one.
-
Moya
- Posts: 8
- Joined: Sun Nov 26, 2017 3:41 pm
Post
by Moya » Fri Feb 16, 2018 8:43 am
hi
Code: Select all
class opers
{
pingfreq 90;
maxclients 50;
sendq 100M;
recvq 32k;
nofakelag;
};
And i've this message :
Code: Select all
/unrealircd.conf:36: class::nofakelag specified without a value
*** error: 1 errors encountered
-
Gottem
- Posts: 180
- Joined: Fri Aug 19, 2016 5:26 pm
- Location: NL
Post
by Gottem » Sun Feb 18, 2018 4:57 pm
Maybe you should read what I said before (stubbornly) going on about disabling it. Seeing as how your class block is called "opers", you do
not need to disable fake lag:
Gottem wrote: ↑Thu Feb 15, 2018 4:25 pm
Opers are already exempt, are you sure you need to disable it?