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

by simo
Mon May 13, 2024 10:01 am
Forum: Script Requests
Topic: first 6 stacked nicks in this mass voice tcl
Replies: 4
Views: 18

Re: first 6 stacked nicks in this mass voice tcl

i think i found a way to achieve that and it seems to work as expected thanks DasBrain for helping trying to find solutions wich is always apreciated as always.

thanks Dasbrain.
by simo
Mon May 13, 2024 9:47 am
Forum: Script Requests
Topic: first 6 stacked nicks in this mass voice tcl
Replies: 4
Views: 18

Re: first 6 stacked nicks in this mass voice tcl

pushmode doesnt allow custom delay wich is what im after as delay i want to use differs from network to network as well as stacked modes per line.
by simo
Mon May 13, 2024 8:54 am
Forum: Script Requests
Topic: first 6 stacked nicks in this mass voice tcl
Replies: 4
Views: 18

first 6 stacked nicks in this mass voice tcl

greetings folks, i was trying to get this mass voice tcl (with delay) to voice first stacked nicks of 6 (or less if there are less then 6 to voice) instant and the rest with delay, but i couldnt figure a way to achieve this perhaps someone of you knows a of a proper method to achieve this. Thanks i ...
by simo
Sat May 11, 2024 9:01 am
Forum: Script Requests
Topic: blacklist for Shun IP
Replies: 2
Views: 117

Re: blacklist for Shun IP

did u mean shun as in IRCOP command /shun , or to set a regular channel ban +b *!*@host or some extended muteban like +q
*!*@host (Solanum) or +b ~quiet:*!*@host (UnrealIRCD) or +b m:*!*@host (InspIRCd) ?

and when should it exactly trigger ?
by simo
Mon May 06, 2024 3:25 am
Forum: Scripting Help
Topic: bad nick txt file ?
Replies: 6
Views: 110

Re: bad nick txt file ?

Ive always wondered if there is a proper way read from a large text file each time a nick joins on a busy channel or in the case of checking badwords each time some one types in a busy channel from
A file with like 1000 or 2000 or more lines.
by simo
Thu Apr 25, 2024 11:29 pm
Forum: Script Support & Releases
Topic: IRCcloud BanMask Corrector
Replies: 0
Views: 389

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 } set userList [chanlist $chan] foreach nxz $userLi...
by simo
Sat Apr 20, 2024 2:39 pm
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 357

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

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

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

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

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

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

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

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

Re: badwords tcl with regexp

thanks CC