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 1232 matches

by CrazyCat
Wed Jan 24, 2024 8:12 am
Forum: Eggdrop Help
Topic: Eggdrop botnet/linking
Replies: 10
Views: 2248

Re: Eggdrop botnet/linking

Did you do a .save ? Change your console to add debug and bot (.console +bd) then try to .link manualy, you'll have more info in the partyline. You can also try to reset passwords (.chpass Leaf-Bot1 and .chpass Master) so they will recreate their link pass. And can you show us the result of .whois f...
by CrazyCat
Mon Jan 15, 2024 4:44 am
Forum: Script Support & Releases
Topic: AdVoice 1.4
Replies: 0
Views: 1263

AdVoice 1.4

Hello there, Automatic (De)voice is now in version 1.4 This script allows an eggdrop to voice an user based on his activity in a channel: voice on join or after a number of lines typed in the channel. It also devoice after an idle delay (per channel setting). Comments and ideas here or in eggdrop.fr
by CrazyCat
Wed Jan 10, 2024 3:04 am
Forum: Script Requests
Topic: TCL script wich let the eggdrop talk every 5 min
Replies: 9
Views: 7694

Re: TCL script wich let the eggdrop talk every 5 min

So the script is really simple: set asmsg { "!start" "!hint" "Oh là laaaa je suis fatigué" "je re , Smoke Time !!!" "!hint" "c'est fatiguant , d'être un robot Ouuuff!!!" "!stop" "!w rabat" } proc autospeak {min hour day ...
by CrazyCat
Tue Jan 09, 2024 3:22 am
Forum: Script Requests
Topic: TCL script wich let the eggdrop talk every 5 min
Replies: 9
Views: 7694

Re: TCL script wich let the eggdrop talk every 5 min

I don't understand exactly what you plan to do, there are several parts: - the automatic sentence each 5 minutes: I guess you want to display a random sentence - a greet message (on join) : another random sentence (different from the previous ?) - some triggers like !start, !stop, !hint, but I don't...
by CrazyCat
Mon Jan 08, 2024 6:42 pm
Forum: Script Requests
Topic: TCL script wich let the eggdrop talk every 5 min
Replies: 9
Views: 7694

Re: TCL script wich let the eggdrop talk every 5 min

This is a nice "fourre-tout", but I think you lack the bases of tcl scripting. I'll make a script tomorrow, with a lot of comments to explain how it works. And if I find time, I'll explain you the main errors you made. But for now, it's sleepin' time. P.S.: contact me using MP about your r...
by CrazyCat
Mon Jan 08, 2024 8:21 am
Forum: Script Requests
Topic: TCL script wich let the eggdrop talk every 5 min
Replies: 9
Views: 7694

Re: TCL script wich let the eggdrop talk every 5 min

Can you be more explicit ?
proc autospeak {min hour day month dow} {
   putserv "PRIVMSG #yourchan :I'm an automated sentence"
}

bind cron - "*/5 * * * *" autospeak
by CrazyCat
Mon Jan 08, 2024 8:03 am
Forum: Other Topics
Topic: SpiKe passed away please send Condolence for his wife
Replies: 5
Views: 16156

Re: SpiKe passed away please send Condolence for his wife

WTF ?
So sad, SpiKe^^ helped a lot of pple here, and I liked to confront our solutions to a same trouble, he gave me alternatives perspectives on some developments.

Cya SpiKe^^.
by CrazyCat
Wed Dec 27, 2023 7:37 am
Forum: Scripting Help
Topic: Need some help on announce data
Replies: 6
Views: 6728

Re: Need some help on announce data

You have set a variable with the chan you want to announce and to create a new proc, called by your bind time, which will call your main proc itself: set gichan "#mychan" proc gameinformertimed {min hour day month dow} { ::gameinformerprocp $::botnick * "$::botnick@127.0.0.1" $::...
by CrazyCat
Tue Dec 26, 2023 12:26 pm
Forum: Scripting Help
Topic: Need some help on announce data
Replies: 6
Views: 6728

Re: Need some help on announce data

I didn't modify your binds, but the bind time won't work, because the proc is done for binds pub.

And actually, https://www.gameinformer.com/this-week is empty, so the script can't display anything.
by CrazyCat
Sun Dec 24, 2023 11:05 am
Forum: Scripting Help
Topic: Need some help on announce data
Replies: 6
Views: 6728

Re: Need some help on announce data

This is due to the -all flag in combination with the -inline: When using -inline, match variables may not be specified. If used with -all, the list will be concatenated at each iteration, such that a flat list is always returned. For each match iteration, the command will append the overall match da...
by CrazyCat
Tue Dec 19, 2023 8:34 am
Forum: Script Requests
Topic: Is it possible?
Replies: 2
Views: 4155

Re: Is it possible?

Probably, if you know a site providing horoscope in the language you need.
by CrazyCat
Fri Dec 15, 2023 7:28 pm
Forum: Script Support & Releases
Topic: IP-Api.com Simple IP info TCL
Replies: 9
Views: 13394

Re: IP-Api.com Simple IP info TCL

One last question :D How to set if timout error is passed or site is offline? how to show error on tcl? After the line: set page [::http::data $token] You can use this kind of code: upvar 0 $token state if {$state(status) ne "ok"} { putlog "HTTP Error : $state(url) made $state(status...
by CrazyCat
Thu Dec 14, 2023 7:28 pm
Forum: Script Support & Releases
Topic: IP-Api.com Simple IP info TCL
Replies: 9
Views: 13394

Re: IP-Api.com Simple IP info TCL

This part is false: set page [http::data [http::geturl $url -timeout 10000]] ::http::cleanup $page ::http::unregister https It must be: set token [::http::geturl $url -timeout 10000] set page [::http::data $token] # putlog "Got this in page: $page" ::http::cleanup $token ::http::unregister...
by CrazyCat
Thu Dec 14, 2023 4:25 am
Forum: Script Support & Releases
Topic: IP-Api.com Simple IP info TCL
Replies: 9
Views: 13394

Re: IP-Api.com Simple IP info TCL

ip-api returns a json, so use json package to parse it (json2dict), don't treat it as simple string. And I'm sure there is already ip-api script samples in this forum. If not, here is a small tip: # $page is the result of your geturl set data [::json2dict $page] set ip [string map {" " &qu...
by CrazyCat
Wed Dec 13, 2023 9:05 am
Forum: Script Requests
Topic: TVMaze Script That lists tonights shows
Replies: 18
Views: 19415

Re: TVMaze Script That lists tonights shows

With my tests, it works with https, peharps your tls package version is too old.

And I'm sorry but I haven't enough time to help you more with other parts, but I think you have all elements to improve the script.

Good luck !