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

by simo
Thu Jul 11, 2024 12:45 pm
Forum: Script Requests
Topic: add banlist counter
Replies: 2
Views: 12123

add banlist counter

greetings i tried to add a counter of the amount of line in this banlist tcl but it doesnt seem to count but instead it uses number 1 only im not that familiar with incr so i thought id ask here. bind dcc n banx dcc_ban_duration proc dcc_ban_duration {hand idx channel} { set chan [lindex $channel 0]...
by simo
Thu Jul 11, 2024 12:10 pm
Forum: Script Requests
Topic: Dronebl.org checking script
Replies: 11
Views: 28134

Re: Dronebl.org checking script

im not sure what IRCD version you are using but it would probably be more effective to use a dnsbl module integrated in the IRCD or use a stand alone bot designed for this poropose like HOPM or other.
by simo
Wed May 22, 2024 6:22 pm
Forum: Scripting Help
Topic: do not ban ops
Replies: 18
Views: 16805

Re: do not ban ops

see if this works for you. ##################################################### # Opciones: # Establece los canales en los que quieres comprobar los usuarios # incluye el "#" y sepáralos con un espacio. EG set checkchans "#chan1 #chan3 #otherchan" set checkchans "#mojo-pico...
by simo
Wed May 22, 2024 4:46 pm
Forum: Scripting Help
Topic: do not ban ops
Replies: 18
Views: 16805

Re: do not ban ops

you also have to consider too much use of commands: names and whois may result in disconnecting due to exceeding server commands limits, so not sure what the max stackable value is wich can be used to send whois in a line on the network you use it on, if you can provide those limits it may be integr...
by simo
Tue May 21, 2024 8:24 am
Forum: Scripting Help
Topic: do not ban ops
Replies: 18
Views: 16805

Re: do not ban ops

all i did really was add a delay on join for the bot to determine if nick isn an chanop/halfop or not and send a whois if not an chanop/halfop or any access to bot.
by simo
Mon May 20, 2024 5:27 pm
Forum: Scripting Help
Topic: do not ban ops
Replies: 18
Views: 16805

Re: do not ban ops

try this : ##################################################### # Opciones: # Establece los canales en los que quieres comprobar los usuarios # incluye el "#" y sepáralos con un espacio. EG set checkchans "#chan1 #chan3 #otherchan" set checkchans "#mojo-picon" # Palabr...
by simo
Mon May 20, 2024 1:33 pm
Forum: Scripting Help
Topic: do not ban ops
Replies: 18
Views: 16805

Re: do not ban ops

you can try this : ##################################################### # Opciones: # Establece los canales en los que quieres comprobar los usuarios # incluye el "#" y sepáralos con un espacio. EG set checkchans "#chan1 #chan3 #otherchan" set checkchans "#mojo-picon" ...
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: 14795

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

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

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

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

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

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

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

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...