Anope IRC Services

Please login or register.

Login with username, password and session length
Advanced search  

News:

Pages: [1] 2 3 ... 10
 1 
 on: May 16, 2023, 10:31:28 PM 
Started by The Myth Lives - Last post by CrazyCat
Last message disregarded :D

Nice to know it works well

 2 
 on: May 16, 2023, 06:54:48 PM 
Started by The Myth Lives - Last post by The Myth Lives
Disregard last message.

All works as expected.

 3 
 on: May 16, 2023, 05:01:15 PM 
Started by The Myth Lives - Last post by The Myth Lives
The complete source are @ https://gitlab.com/irc-stuff/anope-cs-autolimit

I've added the french translation, feel free to contribute and add other languages.

@TODO: display IRCOP help (LIST command) only to ircops

Unfortunately the module doesn't seem to work. Whenever I try to use one of the following commands:
Code: [Select]
AUTOLIMIT <channel> SET <amount> <interval>
AUTOLIMIT <channel> DEL
AUTOLIMIT <channel> SHOW
I get a Access denied. message from ChanServ.

Also, whenever I use /OS MODRELOAD cs_autolimit services lose connection (something to investigate later).

 4 
 on: May 16, 2023, 09:54:51 AM 
Started by The Myth Lives - Last post by welcome to our world !
The only person hurt here is you with all of your selfishness.

I'll assume that you don't know what a community is and why forums like this one exist.

If you want to help the community and share the fixed code, good. If you don't then just don't bother replying to others posts/requests.

Cheers
so naive

 5 
 on: May 16, 2023, 08:28:22 AM 
Started by The Myth Lives - Last post by CrazyCat
The complete source are @ https://gitlab.com/irc-stuff/anope-cs-autolimit

I've added the french translation, feel free to contribute and add other languages.

@TODO: display IRCOP help (LIST command) only to ircops

 6 
 on: May 16, 2023, 07:27:10 AM 
Started by The Myth Lives - Last post by The Myth Lives
The AccessCheck must be corrected.

Initial:
Code: [Select]
bool AccessCheck(CommandSource &source, ChannelInfo *ci) {
return source.GetUser()->HasMode("OPER") || source.AccessFor(ci).HasPriv("chanserv/access/modify");
}

Working:
Code: [Select]
bool AccessCheck(CommandSource &source, ChannelInfo *ci) {
return source.GetUser()->HasMode("OPER") || source.AccessFor(ci).HasPriv("ACCESS_CHANGE") || source.HasPriv("chanserv/access/modify");
}

Thanks, I'll take a look at it later on.

 7 
 on: May 16, 2023, 07:26:03 AM 
Started by The Myth Lives - Last post by The Myth Lives
The only person hurt here is you with all of your selfishness.

I'll assume that you don't know what a community is and why forums like this one exist.

If you want to help the community and share the fixed code, good. If you don't then just don't bother replying to others posts/requests.

Cheers

 8 
 on: May 16, 2023, 05:03:14 AM 
Started by The Myth Lives - Last post by welcome to our world !
The idea of a module fix request is to have the fix publicly available, and I don't see it anywhere public.

Fixing for use on your own IRC network and saying "Done" doesn't really help the community.

Cheers

so hurt

 9 
 on: May 15, 2023, 01:34:45 PM 
Started by The Myth Lives - Last post by CrazyCat
The AccessCheck must be corrected.

Initial:
Code: [Select]
bool AccessCheck(CommandSource &source, ChannelInfo *ci) {
return source.GetUser()->HasMode("OPER") || source.AccessFor(ci).HasPriv("chanserv/access/modify");
}

Working:
Code: [Select]
bool AccessCheck(CommandSource &source, ChannelInfo *ci) {
return source.GetUser()->HasMode("OPER") || source.AccessFor(ci).HasPriv("ACCESS_CHANGE") || source.HasPriv("chanserv/access/modify");
}

 10 
 on: May 15, 2023, 12:34:43 PM 
Started by The Myth Lives - Last post by The Myth Lives
The idea of a module fix request is to have the fix publicly available, and I don't see it anywhere public.

Fixing for use on your own IRC network and saying "Done" doesn't really help the community.

Cheers

Pages: [1] 2 3 ... 10