This is new in 1.6.20... as I never had this issue in 1.6.19 When attempting a dcc chat to the bot, it looks for a matching hostmask, which is the VHOST that the IRC servers have (you know..the vanity names).. but when someone does a /ctcp, it doesn't use the vhost, it uses the true hostmask.. this ...
Sorry to resurrect an old thread - but I'm getting the exact same error.. but, i'm not using putdccraw! I'm using putnow I tried his code below exactly as is, and I still get the same error.. I recently just updated the bot from 1.6.9 to 1.6.20. Is there something else that would generate this error...
Not sure if this is the reason, but you have mixed up your throttled and throttled2 variables.. in proc throttled they should all just be throttled, not throttled2 proc throttled {id time} { global throttled if {[info exists throttled($id)]} { set left 0 foreach t [utimers] { if {[string equal $thro...
You should create a separate script for that function, and you want to specify the listen port in that script listen xxxx script botlisten set password "password" proc botlisten {idx} { control $idx botlisten2 } proc botlisten2 {idx args} { set args [string map { "\\" ""...
no need to quote that much! Thanks! I was getting this error though on the loading of the script invalid command name "UPDATE CC_users SET onirc = 'no' WHERE ircname = 'ToonHead'" while executing ""UPDATE CC_users SET onirc = 'no' WHERE ircname = '$nick'" \ " invoked f...
This is similar to irc idle script., but we've modified it so that when people use alternate nicks in IRC, it works to show people 'online' on a website. so.. we got the join, sign and part procedures changed without a problem, but the nick change we're struggling. Essentially.. if a person is using...
I didn't really need it to be channel specific, so I left it, and I kept it as b, since that is the bot flag (made sense to me!).. but i can't add that flag to the bots.. it just doesn't stay.. it says its being added, but when i check the flags later, there is no b edit: Ok - I found another post w...
hmm.. i thought i had this working, but it was actually the restart of the bot that reset the counters.. I can't set the +b for some reason? I do the .chattr nick +b and it then lists the global flags, and +b isn't there? I thought maybe it was a channel specific flag, so tried .chattr nick +b #chan...
The code below pulls the top 3 idlers in a channel. We have several eggdrop bots in there, so we don't want to include those - whats the best way to create a list of exclusions? Is there a way as its populating the variable rankings that if it matches a nick it does get added? Thanks in Advance! #--...
Hi Again! I keep trying variations of this.. but can't quite get it set maxpoint 6000 set variable [expr {int([rand $maxpoint] * .001)}] I want the possible values to be 0-6 with 2 decimal places (ie.. 5.23, 4.75, etc) the current way i have it, it spits out only whole numbers (I'm assuming because ...