Search found 1242 matches

by CrazyCat
Thu Mar 07, 2024 3:42 am
Forum: Scripting Help
Topic: Facing a challenge with a Tcl script
Replies: 1
Views: 297

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

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

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

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

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

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

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

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

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
by CrazyCat
Sun Feb 11, 2024 3:23 pm
Forum: Script Requests
Topic: Client connections script
Replies: 4
Views: 568

Re: Client connections script

Sorry, I forget:
package require json
by CrazyCat
Sun Feb 11, 2024 10:04 am
Forum: Script Requests
Topic: Client connections script
Replies: 4
Views: 568

Re: Client connections script

I've a script working with unrealircd: package require http bind raw - NOTICE ipcheck proc ipcheck {frm key text} { if {[string match *!*@* $frm] || ![string match -nocase "*client connecting*" $text]} { return } regexp {:\ ([^ ]+)\s\(([^@]+)@([^\)])+\)\s\[([^\]]+)} $text - unick ident hos...
by CrazyCat
Wed Feb 07, 2024 7:12 pm
Forum: Script Requests
Topic: public command with nickserv auth check
Replies: 3
Views: 484

Re: public command with nickserv auth check

So, 2 solutions: 1. leave dalnet for a real network (joking, the only real network is french and named zeolia) 2. you have to do a /whois $nick and catch the server response to get the good "is registered" raw. Means to remember nicks in a variable to check if a raw bind matches the nick y...
by CrazyCat
Wed Feb 07, 2024 4:40 pm
Forum: Script Requests
Topic: public command with nickserv auth check
Replies: 3
Views: 484

Re: public command with nickserv auth check

If the network has the CAP account-notify, you can use getaccount to know if the user is identified or not.
by CrazyCat
Tue Jan 30, 2024 10:20 am
Forum: Script Requests
Topic: scan ip from a proxy scanner site
Replies: 58
Views: 21187

Re: scan ip from a proxy scanner site

So it may work.

Why don't you try and just ask when you have an error ?
by CrazyCat
Tue Jan 30, 2024 7:16 am
Forum: Script Requests
Topic: scan ip from a proxy scanner site
Replies: 58
Views: 21187

Re: scan ip from a proxy scanner site

What is $unick ? How do you get it ?