This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 2 matches

by erderiko
Sun Feb 21, 2016 12:39 pm
Forum: Scripting Help
Topic: Checking every xx Minutes channel and Count Users
Replies: 3
Views: 5753

bind time - "?5 *" checknicks ; #every 10 min bind RAW - 311 checkrealname set mibbit 0 set total 0 proc checknicks {args} { global mibbit total set chan "#chan" set file "stats.txt" set time_now [clock seconds] set time_formated [clock format $time_now -format {%Y-%m-...
by erderiko
Tue Feb 16, 2016 2:37 pm
Forum: Scripting Help
Topic: Checking every xx Minutes channel and Count Users
Replies: 3
Views: 5753

Checking every xx Minutes channel and Count Users

Hello I want to create a TCL Script for my eggodrop 1.6. I want to create a timer that every xx minutes loop over nicks in channel and count users with specific realname and write it to a file. foreach nick [chanlist $chan] { if {match nick!REALNAME "mibbit"}{ count++ } }; How can I do thi...