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

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

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

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

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

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

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

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

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

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

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

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

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

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.
by CrazyCat
Thu Jan 25, 2024 3:21 am
Forum: Eggdrop Help
Topic: Eggdrop botnet/linking
Replies: 10
Views: 2296

Re: Eggdrop botnet/linking

That's weird. Can you show us the full configuration of each eggdrop ? Didn't you change the listen-addr setting or any IP feature ? Please note that I haven't made many changes yet. I quickly removed all comments. Maybe that's where the error is hiding. I can't explain it otherwise. Leafbot.conf i...
by CrazyCat
Wed Jan 24, 2024 11:16 am
Forum: Eggdrop Help
Topic: Eggdrop botnet/linking
Replies: 10
Views: 2296

Re: Eggdrop botnet/linking

That's weird.
Can you show us the full configuration of each eggdrop ? Didn't you change the listen-addr setting or any IP feature ?