The blue part is the ping to the connection. How would I insert a pong? I've tried a few things, like putdcc PONG my.services.name, just using PONG. and a few others. Any ideas? If you would like to see the entire script I"m using, let me know and I'll upload it to my site and make a link.[21:31] RCV: @1a n Eggserv +d 5254
[21:32] RCV: 8 :Xion.scifi-net.org
[21:34] RCV: :Xion.scifi-net.org GNOTICE :No response from eggserv.scifi-net.org[*], closing link
[21:34] RCV: ERROR :Closing Link: eggserv.scifi-net.org[*] (Ping timeout)
[21:34] net: eof!(read) socket 8
[21:34] RCV: connection closed by server.
[21:34] -NOTICE- *** Notice -- No response from eggserv.scifi-net.org[*], closing link
Thx to egghead for the following scriptlet that I'm using.
Any ideas would be greatly appreciatedproc connect:rcv { idx text } {
# if connection closed: control back to eggdrop
if { $text == "" } {
putlog "RCV: connection closed by server."
return 1
}
# putlog any text that eggdrop receives
putlog "RCV: $text"
# new text should come to this proc
return 0
}