Hello,
Is it possible to hide [00:05] Telnet connection: localhost/2258
from my bot when someone connect to my tcl script (listen <port> script <my proc>... If not would be great to add it to the next version??
The listen command is used for bot and user connections too, as such, is handled by exactly the same functions.
When processing an incoming connection, pedeninding on the type of connection, it qwill either be handled byt he bot section of code, user section or send for script priocessing. The logging takes place before this.
You could move the putlogs further down the code, to change this.
ALternativly, make your own socket syste, using Tcl sockets, which are not subject to any of eggdrops logging, and are 100% constructed byt he script.