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

by CrazyCat
Tue Mar 03, 2026 8:03 am
Forum: Other Topics
Topic: 20 years...
Replies: 0
Views: 39

20 years...

Hi there, I'm just proud to announce that eggdrop.fr is gonna be 20yo on july, 25th. Initialy, the forum was a copy of slennox's forum, as a subdirectory of one of my sites (apr 2004 - july 2006) and then i decided to buy eggdrop.fr and migrate the forum to this domain. Now, eggdrop.fr a forum (http...
by CrazyCat
Tue Feb 03, 2026 4:00 am
Forum: Script Requests
Topic: request
Replies: 4
Views: 4373

Re: request

abah wrote: Mon Feb 02, 2026 11:31 pm I want to have an eggdrop that can identify nicknames because I have 10 nicknames
You have 10 nicks, or your eggdrop has ? And identify against what ? NickServ ?
And where are stored the nicknames ? And the associated passwords ?
by CrazyCat
Sun Feb 01, 2026 8:04 am
Forum: Script Requests
Topic: request
Replies: 4
Views: 4373

Re: request

Not sure to understand.
Which nick do you identify and where is it identified ? And in which database is it stored ?

Provide an example of what you're expecting
by CrazyCat
Sat Jan 24, 2026 12:36 pm
Forum: Script Requests
Topic: Banmasks first without delay and with delay after
Replies: 6
Views: 5579

Re: Banmasks first without delay and with delay after

simo wrote: Sat Jan 24, 2026 10:01 am thank you for your reply CrazyCat ,

ive tried your suggestion and got this error :
can't read "counter": no such variable
Just initialize counter to 0 at the beginning of the procedure.
by CrazyCat
Fri Jan 23, 2026 7:17 pm
Forum: Script Requests
Topic: Banmasks first without delay and with delay after
Replies: 6
Views: 5579

Re: Banmasks first without delay and with delay after

Did you try inverting the two lines:
   incr counter 1
   after [expr {$counter*4000}] [list  puthelp "MODE $chan -$mode $masks"]
Become:
   after [expr {$counter*4000}] [list  puthelp "MODE $chan -$mode $masks"]
   incr counter 1
by CrazyCat
Tue Dec 30, 2025 7:46 am
Forum: Eggdrop Help
Topic: auto de-voicing
Replies: 9
Views: 8037

Re: auto de-voicing

Yes ;)
And add services as friend and op
by CrazyCat
Mon Dec 29, 2025 10:44 am
Forum: Eggdrop Help
Topic: auto de-voicing
Replies: 9
Views: 8037

Re: auto de-voicing

simo wrote: Mon Dec 29, 2025 9:39 am afaik that will only kick the one who set the mode :

with kick msg
Abusing desync
No, it also reverse the mode. If the +v is set by a service's bot or the service itself, the eggdrop cannot kick it. But it will reverse the +v
by CrazyCat
Mon Dec 29, 2025 9:27 am
Forum: Eggdrop Help
Topic: auto de-voicing
Replies: 9
Views: 8037

Re: auto de-voicing

Check if the channel has the +nodesynch mode enabled.
And if there is a service bot in your channel, add it as an user and set him the +fo flags
by CrazyCat
Sun Dec 07, 2025 7:28 pm
Forum: Script Requests
Topic: I need help with the reward point system for the radio bot (TCL)
Replies: 2
Views: 14340

Re: I need help with the reward point system for the radio bot (TCL)

Eggdrop script must not (in 99% of cases) be ircd dependant. IRC is a protocol, eggdrop is an IRC client, nothing else. If you go to any IRC network, you don't mind about the ircd running, you just mind about connecting and chat. Eggdrop does the same, the only little differences between networks mu...
by CrazyCat
Fri Dec 05, 2025 3:56 am
Forum: Script Requests
Topic: slap nick
Replies: 10
Views: 9059

Re: slap nick

Ok, the trouble is that $args has a count of 1 event if there is no arg (contains {}) So the first check must be: if {[string trim [join $args]] eq ""} { putserv "PRIVMSG $chan :\002The right thing\002 is \002!slap nick\002 example \002!slap sedition\002" return } When the argume...
by CrazyCat
Wed Dec 03, 2025 4:35 pm
Forum: Script Requests
Topic: slap nick
Replies: 10
Views: 9059

Re: slap nick

I've corrected the last putserv (based on yours, so I didn't removed a $target which wasn't needed). For others troubles... did you restart your eggdrop ? And please, if you have errors, just write: <nicolassss> .slap <@Kantuta > is not in #curmmer <nicolassss> .slap <@Kantuta > The right thing is !...
by CrazyCat
Tue Dec 02, 2025 7:02 pm
Forum: Script Requests
Topic: slap nick
Replies: 10
Views: 9059

Re: slap nick

Ok, so the trouble is that you don't check if $reason is set or not. Here is a modified version of your script: set xphrases { "\001ACTION full of slaps to <nicks> :-)" "\001ACTION slaping :< and spitting in the face of <nicks> slapppppppppppp\001" } bind pub - !slap slapsnick bi...
by CrazyCat
Tue Dec 02, 2025 1:34 pm
Forum: Script Requests
Topic: slap nick
Replies: 10
Views: 9059

Re: slap nick

Not sure to understand what you mean.
Can you give an example of the result of !slap nick and what you expected to have ?
by CrazyCat
Sun Nov 30, 2025 10:19 am
Forum: Scripting Help
Topic: not working
Replies: 3
Views: 11994

Re: not working

And ?
Does it work or not ? If not, what are the errors ?
by CrazyCat
Fri Nov 07, 2025 5:44 am
Forum: Scripting Help
Topic: can you help?
Replies: 4
Views: 5001

Re: can you help?

I simply said that when the error occures, you MUST type .set errorInfo in party-line to have a detailled report about the error, and probably the exact line where the error is. And I gave you an untested solution : Replace putserv "PRIVMSG operserv : kickradyo $kickradyo:msg" With: putser...