irc clients stats

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
User avatar
devilsoulblack
Halfop
Posts: 62
Joined: Wed Nov 19, 2003 9:18 pm
Location: Chile
Contact:

irc clients stats

Post by devilsoulblack »

hi any one know what tcl do this:

Eggdrop make a ctcp nick version on all the nickname was join in channel and save then when any nickname make !ircl this show the stats for the number of irc client was join on that channels

nickname: !ircl
BOT: mIRC: (16)
BOT: Xchat: (10)
BOT: eggdrop: (5)
BOT: kvirc: (20)
..
...

the only tcl we do something like that ist "clientstats.tcl v1.1 (3 January 1999) by slennox <slenny@ozemail.com.au>"
---------
Add [SOLVED] to the thread title if your issue has been.
Search - FAQ
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

And why you didnt like clientstats.tcl?
Архив TCL скриптов для ботов Eggdrop/Windrop:
http://egghelp.ru/
User avatar
devilsoulblack
Halfop
Posts: 62
Joined: Wed Nov 19, 2003 9:18 pm
Location: Chile
Contact:

Post by devilsoulblack »

username wrote:And why you didnt like clientstats.tcl?
clientstats.tcl work only when the user type the tigger and the eggdrop make ctcp version on that moment the idea ist eggdrop make ctcp version on every join user and save the info for when any user type the tigger this send all the data saved
---------
Add [SOLVED] to the thread title if your issue has been.
Search - FAQ
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

Quick solution.
After string

Code: Select all

# Don't edit below unless you know what you're doing
add

Code: Select all

bind join - * join_check
proc join_check {nick uhost hand chan} {
  putserv "PRIVMSG $chan :VERSION"
}
and in proc pub_clstats comment

Code: Select all

  putserv "PRIVMSG $scanchan :VERSION"
line.

I didnt test it.
Архив TCL скриптов для ботов Eggdrop/Windrop:
http://egghelp.ru/
Post Reply