Code: Select all
[08:34] [@] tunare.Zaepho!tunare.Zaepho@EQIMd PART #serverwide.woodforest
[08:34] [@] tunare.Zaepho!tunare.Zaepho@EQIMd JOIN #serverwide.woodforest
to compare I slamed together a few binds/procs to test to make sure it wasn't a problem with the script i was using.
Code: Select all
bind join - * test_join
proc test_join {nick host hand chan} {
putloglev 1 $chan "$nick joined $chan"
}
bind part - * test_part
proc test_part {nick host hand chan args} {
putloglev 1 $chan "$nick left $chan"
}
bind raw - JOIN test_join_raw
proc test_join_raw {src key txt} {
set txtlist [split $txt " "]
set full_user [lindex $txtlist 0]
set nick [lindex [split $full_user "!"] 0]
set keyword [lindex $txtlist 1]
set chan [lindex $txtlist 2]
putloglev 2 * "***RAW*** src: $src key: $key txt: $txt"
}
the raw bindings/proc did show (on the EQIMD server):
Code: Select all
[08:54] ***RAW*** src: tunare.Zaepho!tunare.Zaepho@EQIMd key: JOIN txt: #serverwide.woodforest
Both bots were compiled from the same source code and are 1.6.15+SSL.
The joins/parts are shown properly in other clients (Xchat and mIRC).
Anything else i can check or try? I'd rather not try to re-invent the wheel with the raw bindings for this script. Any thoughts?