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
Tue Feb 13, 2024 7:03 pm
Forum: Script Requests
Topic: Ignore all commands in a channel
Replies: 2
Views: 272

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

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

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

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

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

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

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

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

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

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

Re: scan ip from a proxy scanner site

Just before the line
::http::config -useragent "lynx"
add
putlog "Checking: $ip"
by CrazyCat
Tue Jan 30, 2024 3:54 am
Forum: Script Requests
Topic: tcl script to call data from an api
Replies: 4
Views: 488

Re: tcl script to call data from an api

Here is a small script: namespace eval radu { variable raduurl "http://radu.ovh:8080/crypto" variable raduchan "#test" package require http package require json proc feedget {url} { set tok [::http::geturl $::radu::raduurl -timeout 1000] upvar 0 $tok state if {$state(status) ne &...
by CrazyCat
Mon Jan 29, 2024 7:09 pm
Forum: Scripting Help
Topic: eggdrop connect with chatgpt
Replies: 4
Views: 819

Re: eggdrop connect with chatgpt

I'll pass.
"chatgpt" is the best way to make me blind ;)
by CrazyCat
Mon Jan 29, 2024 10:30 am
Forum: Script Requests
Topic: tcl script to call data from an api
Replies: 4
Views: 488

Re: tcl script to call data from an api

Ok, let me formulate it in another way: I need the url of the API, and I've to know which datas you want to retrieve from the json.
by CrazyCat
Mon Jan 29, 2024 7:01 am
Forum: Script Requests
Topic: tcl script to call data from an api
Replies: 4
Views: 488

Re: tcl script to call data from an api

Without knowing which API you want to use and wich datas in it, we can't help you.