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

by CrazyCat
Sun Sep 14, 2025 7:35 am
Forum: Eggdrop Help
Topic: can you help?
Replies: 4
Views: 162

Re: can you help?

First, your eggdrop is old. You'd better use the last stable.
I know you'll have to do changes in your .conf, but it's better.

Second, you send your nick and pass before the eggdrop asked for it. Don't do that.

Third and last: prefer telnet than ctcp/dcc
by CrazyCat
Sat Aug 23, 2025 5:45 pm
Forum: Script Requests
Topic: [Req] RPG Game TCL
Replies: 7
Views: 6586

Re: [Req] RPG Game TCL

As said before, this projectis not achieved, and I don't think it's functionnal as I use it as a kind of lab.
But it's funny you poste here because since around 2 days, I'm thinking about working again on this project. So, stay listenning, I'll probably need testers soon.
by CrazyCat
Tue Aug 19, 2025 2:04 am
Forum: Script Requests
Topic: Ai.tcl by KuNgFo0 - Responds to certain words said in the set channels.
Replies: 4
Views: 1739

Re: Ai.tcl by KuNgFo0 - Responds to certain words said in the set channels.

Small error, I left a piece of test, a subst which must not be here. Here is the working code: ################################### # Ai.tcl by KuNgFo0 (#eggfaq@efnet) #VERSION 0.3 #DESCRIPTION Responds to certain words said in the set channels. # Set the next lines as the triggers and random respons...
by CrazyCat
Mon Aug 18, 2025 10:36 am
Forum: Script Requests
Topic: Ai.tcl by KuNgFo0 - Responds to certain words said in the set channels.
Replies: 4
Views: 1739

Re: Ai.tcl by KuNgFo0 - Responds to certain words said in the set channels.

Try using subst with $trigger too
if {[string match [string tolower [subst $trigger]] [string tolower subst $arg]]} {
   putserv "PRIVMSG $chan :[subst [lindex $responses [rand [llength $responses]]]]";
   return
}
And in your ai_datas, use $::botnick rather than $botnick
by CrazyCat
Mon Aug 11, 2025 5:00 am
Forum: Scripting Help
Topic: Could you please look?
Replies: 4
Views: 1582

Re: Could you please look?

I think you have to read the basics and try to understand. or use .help +user : ### +user <handle> [hostmask] Creates a new user record for the handle given. The new user record will have no flags, an optional hostmask, and no password. You can use what you want for the handle, it just must be uniqu...
by CrazyCat
Sun Aug 10, 2025 6:29 pm
Forum: Scripting Help
Topic: Could you please look?
Replies: 4
Views: 1582

Re: Could you please look?

Just add the user in the userlist and give him the good attr:

Code: Select all

.+user myfriend dummy!*@*
.chattr myfriend ++g #channel
The previous commands create an user "myfriend" (handle, or unique identifier in the eggdrop userlist) recognized with nick dummy and make him autovoiced on #channel
by CrazyCat
Mon Aug 04, 2025 10:30 am
Forum: Script Requests
Topic: ip requests or !ip
Replies: 1
Views: 1852

Re: ip requests or !ip

No, the trouble is that when you send the request, you first have a "just a moment..." page which is an anti-bot security.
You can't use this page without javascript
by CrazyCat
Sat Jul 26, 2025 5:58 pm
Forum: Script Requests
Topic: Stacking autovoice with delay.
Replies: 3
Views: 3525

Re: Stacking autovoice with delay.

Your script can't stack, it is not intented to do that.

Each time someone joins and has the +v flag, you delay the moment when the +v is sent. Nothing else.

You'd better try to fill a list of users to voice and have a timed proc runned by an independant timer which will voice pple in this list.
by CrazyCat
Tue Jul 22, 2025 12:57 am
Forum: Scripting Help
Topic: not working
Replies: 1
Views: 4425

Re: not working

What do you intend to do ?
Actually you just added a custom flag to the channel but it's not used anywhere.
by CrazyCat
Fri Jul 18, 2025 12:45 pm
Forum: Script Support & Releases
Topic: DANGEROUS - weather tcl script snippet from http://wttr.in
Replies: 3
Views: 9875

Re: DANGEROUS - weather tcl script snippet from http://wttr.in

See the solution given in viewtopic.php?t=21691 and adapt it (no needs of -headers param in ::http::geturl)
by CrazyCat
Fri Jul 18, 2025 12:44 pm
Forum: Script Support & Releases
Topic: DANGEROUS - coingecko.tcl - Crypto Price
Replies: 3
Views: 9406

Re: DANGEROUS - coingecko.tcl - Crypto Price

See the solution given in viewtopic.php?t=21691 and adapt it (no needs of -headers param in ::http::geturl)
by CrazyCat
Fri Jul 18, 2025 12:43 pm
Forum: Script Support & Releases
Topic: DANGEROUS - coinmarket.tcl - another crypto tcl script
Replies: 4
Views: 14551

Re: DANGEROUS - coinmarket.tcl - another crypto tcl script

Not tested, but this is how I did it if I was in your shoes: #ₙₒₜₕᵢₙg ᵢₛ ₕₐᵣₘ ₑₓcₑₚₜ yₒᵤᵣ ₚᵣᵢdₑ ☢ [ ᴇxᴘʟᴏɪᴛᴇʀ ] ☢ #https://www.blackbug.org # Load necessary packages package require http package require tls package require json # Define API credentials set api_url "https://pro-api.coinmarketcap...
by CrazyCat
Tue Jun 17, 2025 5:46 am
Forum: Scripting Help
Topic: domain.tcl
Replies: 1
Views: 5525

Re: domain.tcl

https://tools.whois.com.au/ doesn't exist anymore, this is the one used for .id tlds
by CrazyCat
Sun May 11, 2025 7:10 am
Forum: Script Support & Releases
Topic: Google Search
Replies: 2
Views: 11585

Re: Google Search

Why do you unset googleS_ignore (even with a timer) ? It's useless and probably the root cause of your trouble.

You'd better remove the line, and you can add a debug:
# utimer $googleantirepe [list dict unset googleS_ignore $host]
putlog "Time for $host is [dict get googleS_ignore $host]"
by CrazyCat
Sun May 11, 2025 6:59 am
Forum: Eggdrop Help
Topic: erorr tls
Replies: 2
Views: 21295

Re: erorr tls

You need to install the tcl-tls package to get the tls package