this would be the same as tcl: #check on join: bind join - * voice_on_joined #procedere on join: proc voice_on_joined {nick host handle channel} { #set the name of your chanserv. just "chanserv" won't work. set chanserv "chanserv@services.gamesurge.net" #set the channel in which ...
as an tcl-script you can try something like this: #check on join: bind join - * op_on_joined #procedere on join: proc op_on_joined {nick host handle channel} { #set the host to be opped. my $host for example is "~typ@moxquiz.de" set ophost "~typ@moxquiz.de" #set the name of your ...
Hi, I get the following errors all the time: 14/08/07@05:03.21> : couldn't execute "/usr/bin/ncftpput": too many open files while executing "exec /usr/bin/ncftpput -V -a -m -f /home/eggdrop/moxquiz/scripts/ftpserver.ftp /logs/timestats/ ~/$webscore" (procedure "mx_userspeeds...
thx for clearing that up. I should have been more precise. here's the corrected version: same thing I still think the problem is the bot checking itslef for beeing idle on that chan . another bot checking it gives me the actual idle-time on that chan . my bot checking itself gives me the uptime. -ty...
I still think the problem is the bot checking itslef for beeing idle. another bot checking it gives me the actual idle-time. my bot checking itself gives me the uptime.
I changed the whole thing to this: bind time - * check:idle proc check:idle {args} { set idle_1 "1" set mainchan "#Quiz.de" set idlebot "MowlBot" set idle_idle "[getchanidle $idlebot $mainchan]" if {$idle_idle > $idle_1} {moxquiz_pub_allstarstyp} } proc moxqui...
Hi, I extracted the following script from an anti-idle script. Unfortunally it also exectutes when the bot hasn't idled but every 30 min. I could use some help on how to change that. thx, -typ- timer 30 moxquiz_pub_allstarstyp proc moxquiz_pub_allstarstyp {} { set arg 10 set mirror "#Quiz.de&qu...