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

by CrazyCat
Sun Mar 17, 2024 1:41 pm
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 868

Re: clock

Well, I don't understand what your really expecting.

Can you just describe, in simple words, what the script must do ? Just tell the time (in your language) every x minutes on channels where it's activated ?
And the public command is used to force the script to say the time on the current channel ?
by CrazyCat
Sun Mar 17, 2024 12:36 pm
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 868

Re: clock

Pastebin your full script, the previous code you post doesn't have any line looking like "set otime $replacetime"
by CrazyCat
Sun Mar 17, 2024 11:29 am
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 868

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

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

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

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

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

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

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

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

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

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

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

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