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

by CrazyCat
Mon Jan 29, 2024 10:30 am
Forum: Script Requests
Topic: tcl script to call data from an api
Replies: 4
Views: 498

Re: tcl script to call data from an api

Ok, let me formulate it in another way: I need the url of the API, and I've to know which datas you want to retrieve from the json.
by CrazyCat
Mon Jan 29, 2024 7:01 am
Forum: Script Requests
Topic: tcl script to call data from an api
Replies: 4
Views: 498

Re: tcl script to call data from an api

Without knowing which API you want to use and wich datas in it, we can't help you.
by CrazyCat
Thu Jan 25, 2024 3:21 am
Forum: Eggdrop Help
Topic: Eggdrop botnet/linking
Replies: 10
Views: 2328

Re: Eggdrop botnet/linking

That's weird. Can you show us the full configuration of each eggdrop ? Didn't you change the listen-addr setting or any IP feature ? Please note that I haven't made many changes yet. I quickly removed all comments. Maybe that's where the error is hiding. I can't explain it otherwise. Leafbot.conf i...
by CrazyCat
Wed Jan 24, 2024 11:16 am
Forum: Eggdrop Help
Topic: Eggdrop botnet/linking
Replies: 10
Views: 2328

Re: Eggdrop botnet/linking

That's weird.
Can you show us the full configuration of each eggdrop ? Didn't you change the listen-addr setting or any IP feature ?
by CrazyCat
Wed Jan 24, 2024 10:04 am
Forum: Eggdrop Help
Topic: Eggdrop botnet/linking
Replies: 10
Views: 2328

Re: Eggdrop botnet/linking

Sorry, I wanted to say:
in Master, .whois Leaf-Bot1
in Leaf-Bot1, .whois Master

And when you do the .link, please copy the party-line from both Leaf-Bot1 and Master
by CrazyCat
Wed Jan 24, 2024 8:12 am
Forum: Eggdrop Help
Topic: Eggdrop botnet/linking
Replies: 10
Views: 2328

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: 1465

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: 7785

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: 7785

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: 7785

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: 7785

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: 16527

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: 6818

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: 6818

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: 6818

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...