Search found 1090 matches

by simo
Wed May 22, 2024 6:22 pm
Forum: Scripting Help
Topic: do not ban ops
Replies: 15
Views: 176

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: 15
Views: 176

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: 15
Views: 176

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: 15
Views: 176

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: 15
Views: 176

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
Sat May 18, 2024 2:58 pm
Forum: Script Requests
Topic: bad channel with cron
Replies: 0
Views: 148

bad channel with cron

greetings i was testing this bad channel checker with cron but it doesnt seem to send the nicks in a bad channel stacked to the stackedkicks proc : namespace eval whois { bind cron - {* * * * *} [namespace current]::whois:cron setudef flag stackedwhois proc whois:cron {min hour day month weekday} { ...
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: 65

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

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

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

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

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

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

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

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

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