Anope IRC Services

Anope Development => Modules => Topic started by: Alex on September 08, 2006, 04:08:54 PM

Title: Module cs_join.c
Post by: Alex on September 08, 2006, 04:08:54 PM
Hello n00bie,

Would it be possible to make module cs_join.c to work for UltimateIRCd 3.0.1?

Thanks
Title:
Post by: Tom65789 on September 08, 2006, 04:32:03 PM
it should work with UltimateIRCd anyway... have you already tried it??

(btw i think you hit the wrong button :P)
Title:
Post by: Alex on September 08, 2006, 08:18:50 PM
Hello Tom,

Yes I have it now on UltimateIRCd 3.0.1 but I discover it did the following when it was opped up:

ChanServ Sets mode: +qo ChanServ, but on UltimateIRCd 3.0.1 should it have been +ao.

So, I'm not sure why it does that.

Thanks. ;)

[Edited on 8-9-2006 by Alex]
Title:
Post by: Tom65789 on September 08, 2006, 08:31:03 PM
anope_cmd_mode(s_ChanServ, chan, "+oq %s %s", s_ChanServ, s_ChanServ);

thats why it sets +qo on join, n00bie coded it too
Title:
Post by: n00bie on September 09, 2006, 03:55:07 AM
Hello Alex, as Tom65789 had given you the clue, you can change the code to +oa and as for all the future version of 3rd party modules I'll try to make sure that the module is compatible with other IRCd's too ^^ ... yanno i'm still in a learning process :D
Title:
Post by: Tom65789 on September 09, 2006, 08:49:28 AM
n00bie, just a suggestion. maybe use a config variable to go in services.conf to define which modes ChanServ on join. so maybe like:

CSJoinModes "qo"
Title:
Post by: Alex on September 09, 2006, 08:56:01 AM
Thank you guys. ;)