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

by simo
Thu Apr 25, 2024 11:29 pm
Forum: Script Support & Releases
Topic: IRCcloud BanMask Corrector
Replies: 0
Views: 23

IRCcloud BanMask Corrector

an updated version of irccloudbanmask corrector for dalnet: namespace eval IRcCloudCorrector { bind mode - "% +b" [namespace current]::correct-irccloud proc correct-irccloud {nick uhost hand chan mc ban} { if {![botisop $chan]} { return 0 } foreach nxz [chanlist $chan] { if {![matchaddr $b...
by simo
Sat Apr 20, 2024 2:39 pm
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 130

Re: Double whois

I usually use whois nick nick as well wich gets more info from lot of ircds, glad you found a working solution.

Btw as network administrator you don't see connections from remote servers? That's odd you would expect a network administrator to see such information using proper snomasks.
by simo
Wed Apr 17, 2024 6:08 pm
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 130

Re: Double whois

If u get real ip from the server notice on connect it saves lot of whois I haven't used ratbox myselve used other ircds tho wich allow to retrieve real ip from server notice on connect of nick. After research i found on ratbox ircd ircops use snomask +c or +C to see connections perhaps you could pas...
by simo
Sun Apr 07, 2024 2:54 pm
Forum: Scripting Help
Topic: Message ?
Replies: 7
Views: 163

Re: Message ?

first you need to determine who is the channel owner is that someone who gets ~ prefixed (on some ircds) after he joins channel or is that the one who is owner of the eggdrop if its the latter CrazyCat's code will work fine for that if its the first u will need something else. let me ask you on what...
by simo
Sun Apr 07, 2024 9:35 am
Forum: Scripting Help
Topic: Anti Join Part with +R if multiple JoinParts
Replies: 0
Views: 163

Anti Join Part with +R if multiple JoinParts

greetz , im using this tcl wich checks join parts and sets ban if they join and part within 3 seconds and if multiple nicks join part it sets +R as well, but for some reason it sets +R even if a nick (who was already on channel) just parts and then a join part happens by another nick right after tha...
by simo
Fri Apr 05, 2024 5:52 pm
Forum: Script Requests
Topic: Repeat kick on specific command or text
Replies: 7
Views: 391

Re: Repeat kick on specific command or text

bind pubm * "% .tell*" Repeated:Static-Text set chantexttrigger "4:30" proc Repeated:Static-Text {nick uhost hand chan text} { if {[matchattr $hand of|of $chan] || [isop $nick $chan] || [ishalfop $nick $chan] || [isbotnick $nick]} { return 0 } global chantexttrigger chantextfloo...
by simo
Tue Apr 02, 2024 10:17 am
Forum: Script Requests
Topic: Repeat kick on specific command or text
Replies: 7
Views: 391

Re: Repeat kick on specific command or text

bind pubm * "% .tell*" Repeated:Static-Text set chantexttrigger "4:30" proc Repeated:Static-Text {nick uhost hand chan text} { if {[matchattr $hand of|of $chan] || [isop $nick $chan] || [ishalfop $nick $chan] || [isbotnick $nick]} { return 0 } global chantexttrigger chantextfloo...
by simo
Fri Mar 29, 2024 9:52 am
Forum: Scripting Help
Topic: gline joinflood to snircd
Replies: 13
Views: 9273

Re: gline joinflood to snircd

using it like this : # On-Join Clone Checker Version 0.1 # # author: SpiKe^^ # # e-mail: spike<at>mytclscripts<dot>com # # webpage: http://mytclscripts.com/ # # this script requires EGGDROP v1.6.17 or higher # # this script requires TCL v8.4 or higher # ##############################################...
by simo
Thu Mar 28, 2024 11:46 pm
Forum: Scripting Help
Topic: gline joinflood to snircd
Replies: 13
Views: 9273

Re:

Here's the first try, see if it runs:) I have not tested on it any yet. # On-Join Clone Checker Version 0.1 # # author: SpiKe^^ # # e-mail: spike<at>mytclscripts<dot>com # # webpage: http://mytclscripts.com/ # # this script requires EGGDROP v1.6.17 or higher # # this script requires TCL v8.4 or hig...
by simo
Thu Mar 28, 2024 12:33 pm
Forum: Script Requests
Topic: badwords tcl with regexp
Replies: 2
Views: 105

Re: badwords tcl with regexp

thanks CC
by simo
Thu Mar 28, 2024 10:49 am
Forum: Script Requests
Topic: badwords tcl with regexp
Replies: 2
Views: 105

badwords tcl with regexp

greetz, i was trying out this small badwords tcl with regexp the idea is to have it strip colorscodes bold and such and strip from duplicate characters and non alphabetical/digit and have comon chars replaces wich are often used to evade badwords like 0 for o 3 for e and such and after all that to h...
by simo
Wed Feb 14, 2024 7:01 am
Forum: Script Requests
Topic: Ignore all commands in a channel
Replies: 2
Views: 203

Re: Ignore all commands in a channel

your using the wrong aproach you should have the public !commands restricted to the channels you want them to be used in i would use for example setudef for that.
by simo
Wed Feb 07, 2024 6:35 pm
Forum: Script Requests
Topic: public command with nickserv auth check
Replies: 3
Views: 272

Re: public command with nickserv auth check

Dalnet doesn't have that afaik
by simo
Wed Feb 07, 2024 4:03 pm
Forum: Script Requests
Topic: public command with nickserv auth check
Replies: 3
Views: 272

public command with nickserv auth check

greetingz, i had a request to add a auth check if the nick is auth via nickserv and is validated in eggdrop users file in this code im not sure how to integrate this in a 307 numeric raw check if the nick is identified as on some network like dalnet where we plan to use this users dont have a static...
by simo
Sun Jan 28, 2024 11:19 am
Forum: Scripting Help
Topic: Timer script
Replies: 5
Views: 359

Re: Timer script

let me start with asking : What do u expect it to do ?