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

by CrazyCat
Sun Mar 17, 2024 11:29 am
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 826

Re: clock

https://www.eggheads.org/download/

Take care that your config file may not be compatible with 1.9.5, you'll probably have to redo it
by CrazyCat
Sun Mar 17, 2024 10:48 am
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 826

Re: clock

Which version of eggdrop do you use ? Pretty old I guess.
Update your eggdrop to 1.9.5

Or use the 1st solution I gave (4 bind time)
by CrazyCat
Sun Mar 17, 2024 7:17 am
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 826

Re: clock

Your bind time is used to run when minutes are exactly 0. bind time <flags> <mask> <proc> procname <minute 00-59> <hour 00-23> <day 01-31> <month 00-11> <year 0000-9999> Description: allows you to schedule procedure calls at certain times. mask matches 5 space separated integers of the form: “minute...
by CrazyCat
Sat Mar 09, 2024 6:45 pm
Forum: Scripting Help
Topic: HeLp , Please
Replies: 3
Views: 258

Re: HeLp , Please

I don't understand your question.
by CrazyCat
Fri Mar 08, 2024 5:41 am
Forum: Eggdrop Help
Topic: Timed full shutdown and restart
Replies: 2
Views: 285

Re: Timed full shutdown and restart

You can try to automatically restart the eggdrop with the following script: bind cron - "17 */3 * * *" autorestart proc autorestart {min ho day mo dow} { restart } This will perform a .restart every time the hour is a multiple of 3 (0, 3, 6, 9, 12, 15, 18, 21) and the minutes are 17. If th...
by CrazyCat
Thu Mar 07, 2024 3:42 am
Forum: Scripting Help
Topic: Facing a challenge with a Tcl script
Replies: 1
Views: 156

Re: Facing a challenge with a Tcl script

putlog is your friend.
Can't say more as you clearly don't give any relevant information.
by CrazyCat
Tue Mar 05, 2024 10:46 am
Forum: Other Topics
Topic: Test needed: the werewolves of Millers Hollow
Replies: 0
Views: 415

Test needed: the werewolves of Millers Hollow

Hi guys and girls, I'm working on the creation of an IRC version of this game (aka Mafia in some countries) and I need some tests with a (relatively) large number of participants, more than 8 is cool, the most participants there are, the better it is! The game is quite easy to understand: citizens m...
by CrazyCat
Mon Mar 04, 2024 2:56 am
Forum: Tcl FAQ
Topic: Any specific IDEs
Replies: 2
Views: 921

Re: Any specific IDEs

Some editors, as notepad++ with windows, have tcl code highligting.
komodo has been retired but you can find OpenKomodoIDE @ https://github.com/ActiveState/OpenKomodoIDE (didn't tested)
by CrazyCat
Mon Mar 04, 2024 2:53 am
Forum: Scripting Help
Topic: How do I make the x data variable into the y data variable?
Replies: 3
Views: 164

Re: How do I make the x data variable into the y data variable?

I don't understand how you want to split the notice.
Can you be more explicit or use real example?
by CrazyCat
Wed Feb 21, 2024 8:08 am
Forum: Eggdrop Help
Topic: how to fix
Replies: 4
Views: 251

Re: how to fix

Not sure to understand.
Your bots were linked but you redo one of them so the other tries to connect ?

Go in the party-line of bunda and do .-bot <yourbot>
by CrazyCat
Wed Feb 21, 2024 7:40 am
Forum: Eggdrop Help
Topic: how to fix
Replies: 4
Views: 251

Re: how to fix

Invalid handle: it means the user doesn't use the good handle.

We don't know what you're doing, if these messages come from linking attempt (I doubt) or when you try to connect yourself to party-line.

Give us detals and peharps we'll be able to help you.
by CrazyCat
Wed Feb 21, 2024 3:10 am
Forum: Scripting Help
Topic: Look for tutorial
Replies: 2
Views: 391

Re: Look for tutorial

Hello and welcome. You can use https://docs.eggheads.org/tutorials/firstscript.html to begin and learn the basics precepts of scripting for eggdrop. And you can also bookmark the "Tcl commands for eggdrop" page which is the bible :) There is no real "user friendly" doc, but you c...
by CrazyCat
Tue Feb 13, 2024 7:03 pm
Forum: Script Requests
Topic: Ignore all commands in a channel
Replies: 2
Views: 248

Re: Ignore all commands in a channel

Sorry but no.
You can peharps find a way by catching them with pubm and "return 1" if it's in a channel you want the ignore active (if exclusive-bind is set to 1) but it could become heavy resources consumming.

Whick kind of comands do you want to ignore and where/why ?
by CrazyCat
Mon Feb 12, 2024 3:39 am
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 826

Re: clock

(Moderation : replaced quote tag with tcl tag)

Yes, you can easily by changing sharetime(format)
set sharetime(format) "%A %B %d %Y -- %I:%M:%S %p"
Reference: https://www.tcl.tk/man/tcl8.5/tutorial/Tcl41.html