This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Active Chatter v3.72.b by awyeah

Support & discussion of released scripts, and announcements of new releases.
Post Reply
User avatar
swarfega
Voice
Posts: 25
Joined: Sat Oct 07, 2006 6:40 am

Active Chatter v3.72.b by awyeah

Post by swarfega »

Ive got it autovoicing on chat but its not devoicing after the set time (in this case 20 minutes).

btw i love your scripts.
w
willyw
Revered One
Posts: 1196
Joined: Thu Jan 15, 2009 12:55 am

Re: Active Chatter v3.72.b by awyeah

Post by willyw »

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? ... c&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.
User avatar
swarfega
Voice
Posts: 25
Joined: Sat Oct 07, 2006 6:40 am

Post by swarfega »

works now thanks to that update. Thanks.
w
willyw
Revered One
Posts: 1196
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

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. ;)
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

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.
==================================
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

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.
==================================
w
willyw
Revered One
Posts: 1196
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

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
h
hagemaru
Voice
Posts: 1
Joined: Sat Mar 28, 2009 8:50 pm

bot in hop mode (+h)

Post by hagemaru »

if bot in hop mode (+h) why activechatter no work for autovoice. Is onli work for devoice only?, thanks
regrads
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

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.
==================================
a
arcADE
Voice
Posts: 7
Joined: Sat Feb 04, 2006 3:50 pm
Location: /dev/zero
Contact:

Post by arcADE »

for the halfop problem, it's easy enough to fix:

replace line 279

Code: Select all

if {[botisop $chan] && [onchan $nick $chan] && ![isop $nick $chan] && ![isvoice $nick $chan]} {
with

Code: Select all

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: Select all

if {[botonchan $chan] && ![info exists exempt] && ([getchanidle $user $chan] >= $autovoice(dvtime))} {
with:

Code: Select all

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
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

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.
==================================
User avatar
spithash
Master
Posts: 248
Joined: Thu Jul 12, 2007 9:21 am
Location: Libera
Contact:

Post by spithash »

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
Post Reply