| View previous topic :: View next topic |
| Author |
Message |
StarLion Voice
Joined: 20 Dec 2005 Posts: 16
|
Posted: Thu Apr 06, 2006 3:57 pm Post subject: Bot sets modes when owner joins. |
|
|
Whenever an owner (current flags: jlmnoptx global, no channel) joins a channel my bot has ops on, the bot procedes to try and set modes on the channel equal to the owner's name. IE: Cecilia joins the channel, the bot tries to set +Cecila on the channel, which on my particular network gets truncated to +ci for invalid modes. This is extremely annoying and NOT what the bot is supposed to do.
Any ideas? |
|
| Back to top |
|
 |
Sir_Fz Revered One

Joined: 27 Apr 2003 Posts: 3793 Location: Lebanon
|
Posted: Thu Apr 06, 2006 5:28 pm Post subject: |
|
|
Do you have any scripts loaded that might be causing this conflict? _________________ Follow me on GitHub
- Opposing
Public Tcl scripts |
|
| Back to top |
|
 |
StarLion Voice
Joined: 20 Dec 2005 Posts: 16
|
Posted: Thu Apr 06, 2006 6:04 pm Post subject: |
|
|
The only non-standard scripts:
dice.tcl (A die roller that doesnt even contain the word 'mode' in it)
av.tcl :
| Code: | bind join - * join:auto_voice
proc join:auto_voice {nick host hand chan} {
pushmode $chan +v $nick
} |
Though judging by the 'timing' of the mode change (I've noticed it also triggers whenever the owner is deoped), i dont think this script is the problem. |
|
| Back to top |
|
 |
BarkerJr Op

Joined: 30 Mar 2003 Posts: 104
|
Posted: Sat Apr 08, 2006 12:33 am Post subject: |
|
|
| What IRC server version is the network? See /version. |
|
| Back to top |
|
 |
YooHoo Owner

Joined: 13 Feb 2003 Posts: 939 Location: Redwood Coast
|
Posted: Sun Apr 09, 2006 8:29 am Post subject: |
|
|
| StarLion wrote: | The only non-standard scripts:
dice.tcl (A die roller that doesnt even contain the word 'mode' in it)
av.tcl :
| Code: | bind join - * join:auto_voice
proc join:auto_voice {nick host hand chan} {
pushmode $chan +v $nick
} |
Though judging by the 'timing' of the mode change (I've noticed it also triggers whenever the owner is deoped), i dont think this script is the problem. | What does your Global Channel options look like? And exactly what scripts are you loading? _________________
Johoho's TCL for beginners
 |
|
| Back to top |
|
 |
|