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

by CrazyCat
Fri Mar 21, 2025 1:13 pm
Forum: Other Topics
Topic: IRC World Day ?
Replies: 4
Views: 12846

Re: IRC World Day ?

Carlin0 wrote: Fri Mar 21, 2025 8:40 am I registered #ircday on libera.chat
I saw :)
Can you add CC_Egg and CrazyCat (that's me) as halfop ? I'll establish a relay with zeolia's channels soon
by CrazyCat
Thu Mar 20, 2025 6:25 am
Forum: Other Topics
Topic: IRC World Day ?
Replies: 4
Views: 12846

IRC World Day ?

Hi there :) I'm trying to launch the IRC World Day: The IRC protocol, designed by Jarkko "WiZ" Oikarinen and Darren Reed in August 1988, was formalized in May 1993 by RFC 1459. We could celebrate this on May 14th ( 14 / 5 / 9 3) and organize an #ircday event. This gives us a little less th...
by CrazyCat
Mon Mar 10, 2025 4:02 am
Forum: Scripting Help
Topic: Auto Voice Top 3 word (kelime) players
Replies: 2
Views: 4752

Re: Auto Voice Top 3 word (kelime) players

You can do it with a small proc using tgscore: proc tgvonjoin {nick uhost handle chan} { set tmp [list] for {set i 0} {$i<[llength $::tgscore]} {incr i} { lappend tmp [split [lindex $::tgscore $i] ,] } set tmp [lrange [lsort -decreasing -integer -index 2 $tmp] 0 2] if {[lsearch -nocase -index 0 $tmp...
by CrazyCat
Sun Mar 09, 2025 3:37 am
Forum: Scripting Help
Topic: crypto/coins price script
Replies: 11
Views: 79922

Re: crypto/coins price script

I sent the script to crazycat but i guess he can't or don't have the interest about it, nway thank you egghelp or eggheads hahaha :D :D :D :D <nobody>!coin btc <ethereum> ««[ Bitcoin (BTC) ]»» Price: $85849.37238241105 USD ☢ 1h: ▼ -0.16791785% ☢ 1d: ▼ -1.34674824% ☢ 1w: ▲ 0.80632246% ☢ 1m: ▼ -11.24...
by CrazyCat
Sat Mar 08, 2025 1:06 pm
Forum: Scripting Help
Topic: crypto/coins price script
Replies: 11
Views: 79922

Re: crypto/coins price script

nobody wrote: Sat Mar 08, 2025 6:10 am yes because there are people selling it and i don't wanna destroy there business
So ask peoples who wrote and sold it.
by CrazyCat
Fri Mar 07, 2025 6:46 pm
Forum: Scripting Help
Topic: crypto/coins price script
Replies: 11
Views: 79922

Re: crypto/coins price script

With this piece of code, no.
We don't know what does fetch_coin_data and how it works.

Put the full script and peharps we can help you.
by CrazyCat
Sat Feb 08, 2025 8:11 am
Forum: Scripting Help
Topic: [Solved] Error in logger.tcl
Replies: 2
Views: 15640

Re: Error in logger.tcl

This is because in many languages, any number begining with 08 (including 08 itself) is interpreted as an octal number.
Use strfitme "%e" rather than %d which adds a leading 0
by CrazyCat
Sun Feb 02, 2025 12:02 pm
Forum: Script Requests
Topic: add owner in eggdrop
Replies: 3
Views: 77489

Re: add owner in eggdrop

That's a quite dangerous script. proc addowner {nick uhost handle chan text} { if {![onchan $text $chan]} { putserv "PRIVMSG $nick :Sorry, can't find $text on $chan" return } set victhost [maskhost "$text![getchanhost $text $chan]" 1] adduser $text $victhost chattr $text +n $chan...
by CrazyCat
Thu Jan 30, 2025 5:51 am
Forum: Scripting Help
Topic: identify nick random
Replies: 9
Views: 39428

Re: identify nick random

I gave you the good syntax, this is the one you quoted.
by CrazyCat
Mon Jan 27, 2025 6:59 pm
Forum: Scripting Help
Topic: identify nick random
Replies: 9
Views: 39428

Re: identify nick random

Because the good bind syntax is:
bind cron - "14 3 */2 * *" identnick
by CrazyCat
Tue Jan 07, 2025 8:07 am
Forum: Script Requests
Topic: Deop on idle
Replies: 7
Views: 8474

Re: Deop on idle

The reason i want to automate this is to constantly add and delete manually as nicks are added and removed from the access list over time. So peharps you must change the way your channel is working and use the eggdrop as maintainer of the access: a command allow admins to add/remove @ in eggdrop li...
by CrazyCat
Mon Jan 06, 2025 11:33 am
Forum: Script Requests
Topic: Deop on idle
Replies: 7
Views: 8474

Re: Deop on idle

If you add a flag, it means you have the user in eggdrop's users base. So why don't you just add the flag by the hand (like +O) and modify your script to exempt +O users from being deopped ? But if you want to have a kind of automation for that (very bad idea imho), it's possible to temporaly store ...
by CrazyCat
Mon Jan 06, 2025 6:57 am
Forum: Script Requests
Topic: Deop on idle
Replies: 7
Views: 8474

Re: Deop on idle

I don't think you have any other solution than creating a list of excluded users.
Peharps can you fill it automatically by adding the nick of the user if he's re-opped by chanserv after your script deop him.

Or give the eggdrop a higher access than everyone :)
by CrazyCat
Mon Dec 30, 2024 7:19 pm
Forum: Other Topics
Topic: Happy 2025
Replies: 4
Views: 90189

Happy 2025

Even if 2024 was a quite bad year, I whish everybody a good 2025'. SpiKe left us in 2024, but the community is still alive and reminds of him. I've a lot of thinks for his family, and hope they are well. I think he may had love the evolution of eggdrop, with the integration of python, and I'll try t...
by CrazyCat
Wed Dec 18, 2024 3:18 am
Forum: Script Support & Releases
Topic: chanserv.tcl
Replies: 21
Views: 24735

Re: chanserv.tcl

The placement in ignore is due to your eggdrop. I recommand to add the network's services in your user list, with the different official hosts they have and +fo flags: .+user services *!*@@services.dal.net .+host services *!*@dal.net .chattr services +fo Concerning your initial request, you'll have ...