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

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

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

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

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

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

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

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

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

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

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

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

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

Re: scan ip from a proxy scanner site

What is $unick ? How do you get it ?
by CrazyCat
Tue Jan 30, 2024 6:01 am
Forum: Script Requests
Topic: scan ip from a proxy scanner site
Replies: 58
Views: 21137

Re: scan ip from a proxy scanner site

FmX wrote: Tue Jan 30, 2024 5:18 am and 1 latest request. Can you make to not scanning IPs start with 53.*
Just replace:
   ::pchecker::isvpn $ip
}
With:
   if {[string first "53." $ip]==0} { return }
   ::pchecker::isvpn $ip
}
by CrazyCat
Tue Jan 30, 2024 4:18 am
Forum: Script Requests
Topic: Help me please
Replies: 1
Views: 404

Re: Help me please

Which message do you want to send to who ?
proc msg2x {} {
   putserv "PRIVMSG user :Hey I'm an automated message"
}
timer 80 msg2x 0 tmsg2x
by CrazyCat
Tue Jan 30, 2024 4:10 am
Forum: Script Requests
Topic: scan ip from a proxy scanner site
Replies: 58
Views: 21137

Re: scan ip from a proxy scanner site

Just before the line
::http::config -useragent "lynx"
add
putlog "Checking: $ip"