In order to avoid setting channels to active and inactive several times, I added a check to avoid setting its status again and again... ## Delay Join ## foreach bind [binds active] {lassign $bind type flags mask num proc; unbind $type $flags $mask $proc} foreach bind [binds inactive] {lassign $bind ...
Not sure to understand why you play with unbinds. And why you bind all the events. I unbind because I forget to unbind when modifying the script and the bind remains. You can just use these two binds: bind evnt - connect-server inactive bind evnt - init-server join:delay That's a good point, I'll m...
I have an eggdrop that connects to several crowded channels, so every once and again, when the bot crashed or got stoned, the eggdrop would get kicked out of the network because it would exceed the sendq data limit. So to stop that, I had to set some channels to inactive and enable them one at a tim...
i try but 20<SlaSerX>30 .google linux 18<Test118> Error querying Google: 403 -> ok 20<SlaSerX>30 .google test 18<Test118> Error querying Google: 403 -> ok i setup my api and etc It's a 403 error. That means someone is banning you from accessing google, maybe a proxy? Are you sure the API key and th...
This is the script I'm using to query google. You can replace the youtube section of the code (at the very bottom) with whichever site you want to google into. ############################################################################################## ## ## Advanced Google.tcl for eggdrop by Ford...
I don't know. I was expecting for there to be more to the error message - to help give us some clues. I wouldn't have been surprised if it had been something like : too many connections from your ip , if your bot is on a popular shell. If you've tried it with the bot, using -n switch, you could the...
um i always use us.dal.net port 6667 just saying try us.dal.net always works for me for my bots ;) oh and what do you have this set to # What is your network? # 0 = EFnet # 1 = IRCnet # 2 = Undernet # 3 = DALnet # 4 = +e/+I/max-modes 20 Hybrid # 5 = Others set net-type it better be 3 for dalnet 0 i...
Hi guys: Sorry to bother but my eggdrop 1.8.0 isn't able to connect from a shell to dalnet. This same eggdrop (using the exact same .conf file) was connected to dalnet for a long time, however, the connection was dropped and now it can't reconnect. This is the error I'm constantly getting: [09:47:52...
Thanks willyw, indeed the stats.mod posted on the eggheads FTP compiles, the problem I'm having with that version is that it crashes my eggdrop when I try to publish the webstats. I reported the issue on Florian's github, that's why I was looking for version 1.4.
Hi guys: I'm trying to install stats.mod 1.4.0dev20 on eggdrop 1.8.0 but it's failing to compile. Checking on Florian Sander's github I found a branch called eggdrop-1.8 but that one fails on install as well. Has anyone managed to make this module work on eggdrop 1.8.0 (or later)? Thanks in advance.
I'm aware that the code has a flood control mechanism, I just wanna add my bot's flood control mechanism, which takes into account every script on the bot. But in order to do that, I must call the script I use from within each script.
everything that needs to be changed is uncoded, so I do not see your need to decode that tcl, if the author released like that.. I understand, but I wanted to add (as an example) my personal flooding control script, which checks flooding on every script on my eggdrop, and for that I must add a call...