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.

Eggdrop wont voice --> NOT 1.6.15

Old posts that have not been replied to for several years.
Locked
User avatar
Aron
Halfop
Posts: 86
Joined: Sat Mar 15, 2003 8:35 am

Eggdrop wont voice --> NOT 1.6.15

Post by Aron »

For some odd reason, my eggdrop wont respond to the .voice command, and wont voice +v users anymore.

It worked fine untill this afternoon, when i wrote some scripts, and added them.

If i use the .voice command, it says it gave the voice to the person, but does not change the mode.
Devoicing, opping, banning, etc works fine.

The .voice bind is fine.
The net type is set to the correct number.
I already tried to turn off all my scripts, but still had the same problem.
I tried restarting, rehashing, switching servers.


However, i found out that when I devoice a user, i can use the .voice command fine, but as soon as that person rejoins again, it doesnt work anymore.

Im really lost..

Any suggestions?
The best way to start learning is to start helping.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Please try searching the forums.

There is a small bug in 1.6.15 that causes this.

However, i would seriously look at your scripts.

If it suddenly stops after adding a script, you can usualy bet it is the script at fault.
User avatar
Aron
Halfop
Posts: 86
Joined: Sat Mar 15, 2003 8:35 am

Post by Aron »

Uhm, i just said, it is a 1.6.13 bot, not a 1.6.15

Also, i tried commenting out all my scripts, then restarting, but it wouldnt work either.
The best way to start learning is to start helping.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

My bad.

This is an age old issue, that may or may not be related to eggdrop.

What IRC network are you on, and what make/version IRCD is it running.
User avatar
Aron
Halfop
Posts: 86
Joined: Sat Mar 15, 2003 8:35 am

Post by Aron »

I'm on quakenet.

Code: Select all

Server: ign.ie.quakenet.org[u2.10.11.04+asuka(1.0.2)]
I also forgat to mention, i already tried recompiling.
I dont think the problem is in the server version though, because im running 2 other bots on the same network, without having any problems.
The best way to start learning is to start helping.
User avatar
kazoo
Halfop
Posts: 48
Joined: Wed Jun 18, 2003 7:26 pm
Location: Nashville, TN
Contact:

Post by kazoo »

just make a simple script for voicing people in a channel, like..

Code: Select all

bind pub n|f .voice cmd:voice
proc cmd:voice {nick host hand chan text} {
putquick "Mode $chan +v :$text"
}
and then one for devoicing people..

Code: Select all

bind pub n|f .devoice cmd:devoice
proc cmd:devoice {nick host hand chan text} {
putquick "Mode $chan -v :$text"
}
I think that should work
User avatar
Aron
Halfop
Posts: 86
Joined: Sat Mar 15, 2003 8:35 am

Post by Aron »

I already have my own voicing/opping/etc script, which doesnt work.

For some reason, voice just wont work.
If i devoice a +v user, he will get voiced back again, tho
The best way to start learning is to start helping.
Locked