| View previous topic :: View next topic |
| Author |
Message |
swarfega Voice

Joined: 07 Oct 2006 Posts: 25
|
Posted: Tue Feb 17, 2009 7:20 pm Post subject: Active Chatter v3.72.b by awyeah |
|
|
Ive got it autovoicing on chat but its not devoicing after the set time (in this case 20 minutes).
btw i love your scripts. |
|
| Back to top |
|
 |
willyw Revered One
Joined: 15 Jan 2009 Posts: 1175
|
Posted: Tue Feb 17, 2009 8:11 pm Post subject: Re: Active Chatter v3.72.b by awyeah |
|
|
| swarfega wrote: | Ive got it autovoicing on chat but its not devoicing after the set time (in this case 20 minutes).
btw i love your scripts. |
I don't know if the version you've downloaded has been fixed or not.
But check out this thread:
http://forum.egghelp.org/viewtopic.php?t=13881&postdays=0&postorder=asc&start=15
as I got an answer to the part about not de-voicing. How to fix it, is in that thread. I haven't gotten a reply on the other part though. |
|
| Back to top |
|
 |
swarfega Voice

Joined: 07 Oct 2006 Posts: 25
|
Posted: Wed Feb 18, 2009 12:45 pm Post subject: |
|
|
| works now thanks to that update. Thanks. |
|
| Back to top |
|
 |
willyw Revered One
Joined: 15 Jan 2009 Posts: 1175
|
Posted: Wed Feb 18, 2009 1:19 pm Post subject: |
|
|
| swarfega wrote: | | works now .... |
Well... watch out for the interference with logging. That's not fixed yet.
As for the other part - you're welcome.  |
|
| Back to top |
|
 |
awyeah Revered One

Joined: 26 Apr 2004 Posts: 1580 Location: Switzerland
|
Posted: Sun Feb 22, 2009 9:21 pm Post subject: |
|
|
The updated script is uploaded on:
http://channels.dal.net/awyeah/
Active Chatter v3.80.b
http://metalab.uniten.edu.my/~jawad/activechatter.tcl
It will be available on egghelp's TCL Archive hopefully by the end of this month, i.e. February 2009. I have sent it to slennox already. This will be the last update for this script.
regards,
awyeah _________________ ·awyeah·
==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
================================== |
|
| Back to top |
|
 |
awyeah Revered One

Joined: 26 Apr 2004 Posts: 1580 Location: Switzerland
|
Posted: Sun Feb 22, 2009 9:22 pm Post subject: |
|
|
| willyw wrote: | | swarfega wrote: | | works now .... |
Well... watch out for the interference with logging. That's not fixed yet.
As for the other part - you're welcome.  |
Hopefully, someone can improvise and take up this challenge.. there are a lot of gurus in the forum now a days. _________________ ·awyeah·
==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
================================== |
|
| Back to top |
|
 |
willyw Revered One
Joined: 15 Jan 2009 Posts: 1175
|
Posted: Sun Feb 22, 2009 9:34 pm Post subject: |
|
|
Yes, I hope so. It is a shame that it interferes with logging, as it is now.
The function that it provides a channel can be a nice touch. I like it, and wish I could use it.
Thanks |
|
| Back to top |
|
 |
hagemaru Voice
Joined: 28 Mar 2009 Posts: 1
|
Posted: Sat Mar 28, 2009 8:54 pm Post subject: bot in hop mode (+h) |
|
|
if bot in hop mode (+h) why activechatter no work for autovoice. Is onli work for devoice only?, thanks
regrads |
|
| Back to top |
|
 |
awyeah Revered One

Joined: 26 Apr 2004 Posts: 1580 Location: Switzerland
|
Posted: Sun Apr 26, 2009 2:59 pm Post subject: |
|
|
I am not sure, which type of IRCd you're network works on. But basically I designed it for bahamut, i.e. DALnet, where only two modes +o and +v are available, ops and voices respectively.
Networks with +h, half op, or half voice or whatever, I am not sure, this script will work or not. Haven't tested it there. You might have to edit the script yourself or ask someone to do it according to your needs.
Peace,
awyeah _________________ ·awyeah·
==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
================================== |
|
| Back to top |
|
 |
arcADE Voice
Joined: 04 Feb 2006 Posts: 7 Location: /dev/zero
|
Posted: Sun May 24, 2009 4:11 pm Post subject: |
|
|
for the halfop problem, it's easy enough to fix:
replace line 279
| Code: |
if {[botisop $chan] && [onchan $nick $chan] && ![isop $nick $chan] && ![isvoice $nick $chan]} {
|
with
| Code: |
if {([botisop $chan] || [botishalfop $chan]) && [onchan $nick $chan] && ![isop $nick $chan] && ![isvoice $nick $chan]} {
|
also, you forgot to check if the bot is op'd in the devoice routine, so that's why it worked with halfop, but it's usefull to check just to prevent it from trying when it's not op'd or halfop'd
replace line 322:
| Code: |
if {[botonchan $chan] && ![info exists exempt] && ([getchanidle $user $chan] >= $autovoice(dvtime))} {
|
with:
| Code: |
if {([botisop $chan] || [botishalfop $chan]) && [botonchan $chan] && ![info exists exempt] && ([getchanidle $user $chan] >= $autovoice(dvtime))} {
|
hope it helps
PS: sorry for reviving a dead thread, just thought it was worth posting this _________________ keep IT reaL |
|
| Back to top |
|
 |
awyeah Revered One

Joined: 26 Apr 2004 Posts: 1580 Location: Switzerland
|
Posted: Mon May 25, 2009 2:56 am Post subject: |
|
|
You might want to also check the halfop global variable in the configuration file of the bot, to determine if it is set correctly, based on your IRCd.
I dont remember the name of the parameter, but it mostly defines, the sign used for halfop, generally as "%~&" or something.
regards,
JD _________________ ·awyeah·
==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
================================== |
|
| Back to top |
|
 |
spithash Master

Joined: 12 Jul 2007 Posts: 248 Location: Libera
|
Posted: Fri Dec 13, 2013 5:09 am Post subject: |
|
|
could this script be modified to work with a timer instead of a line count?
For example to voice users after 30 seconds in a moderated channel and devoice them if they idle
this will help me a lot... _________________ Libera ##rtlsdr & ##re - Nick: spithash
Click here for troll.tcl |
|
| Back to top |
|
 |
|