Search found 1087 matches

by simo
Tue Oct 10, 2023 5:59 am
Forum: Scripting Help
Topic: gline not working
Replies: 5
Views: 6689

Post the entire code not just parts of it
by simo
Mon Oct 09, 2023 11:56 am
Forum: Scripting Help
Topic: on connect bad realname
Replies: 7
Views: 7780

thanks CC but isnt:

Code: Select all

  \[([a-z]{2,6})\]  
restricted to only a-z characters used as he didnt specify wich characters to check for i assumed all characters and not just a-z
by simo
Sat Oct 07, 2023 10:13 am
Forum: Scripting Help
Topic: on connect bad realname
Replies: 7
Views: 7780

this seems to work for me : works for both remote and local server. bind raw - NOTICE On-Connect:Drone-Check proc On-Connect:Drone-Check {from keyword text} { set text [regsub -all -- {\s{2,}} [string trim [stripcodes * $text]] { }] if {[string match *!*@* $from]} { return 0; # not a server notice }...
by simo
Sat Oct 07, 2023 6:42 am
Forum: Script Support & Releases
Topic: Anti Spam by KAMI
Replies: 4
Views: 5426

Could be due to exempts list

On what irc network is this running and what kind of ircd?
by simo
Thu Sep 28, 2023 11:03 am
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 22026

heres some info on it: https://www.unrealircd.org/docs/Snomasks

snomask b seems responsible for the output of set shuns if you are running unrealircd 6
by simo
Thu Sep 28, 2023 10:01 am
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 22026

g'evening simo , that part removed but msg still coming from ircd

that has nothing to do with eggdrop but with ircd settings and the snomasks set for opers.
by simo
Thu Sep 28, 2023 7:20 am
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 22026

remove :

Code: Select all


bind raw - notice shun-snotice

proc shun-snotice {from keyword arg} {
 if {[string match -nocase "*shun*" $arg]} {
   set shun [lrange $arg 1 end]
   putserv "privmsg $::monchan :$shun"
  }
}

by simo
Wed Sep 27, 2023 3:49 pm
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 22026

im not sure i understand what you mean
by simo
Wed Sep 27, 2023 1:51 pm
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 22026

you could try this : set monchan #botop bind pub -|- !shun pub:shun proc pub:shun {nick host hand chan text} { if {![string equal -nocase $chan "$::monchan"]} { return 0 } if {![isbotnick $nick] && ![isop $nick $chan] && ![ishalfop $nick $chan] && ![matchattr [nick2...
by simo
Wed Sep 27, 2023 10:50 am
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 22026


the confirm msg just need it like :

<!Autobot> Shun added on nick for 1h by Yusif ,... instead showen ip
<!Autobot> Shun removed on nick by Yusif
the reason i use the output from the IRCD is so u can see what the actuall shun that is set and also to confirm that its actually set.
by simo
Wed Sep 27, 2023 8:32 am
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 22026

see if this works : set monchan #botop bind raw - notice shun-snotice proc shun-snotice {from keyword arg} { if {[string match -nocase "*shun*" $arg]} { set shun [lrange $arg 1 end] putserv "privmsg $::monchan :$shun" } } bind pub -|- !shun pub:shun proc pub:shun {nick host hand ...
by simo
Tue Sep 19, 2023 5:57 pm
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17880

Makes sense thanks Crazy Cat and caesar
by simo
Mon Sep 18, 2023 12:30 pm
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17880

thanks caesar bind pub -|- !op Pub:OP:monotor-channel proc Pub:OP:monotor-channel {nick host hand chan text} { set text [regsub -all -- {\s{2,}} [string trim [stripcodes * $text]] { }] set items [split $text] if {[llength $items] < 1 } { putnow "notice $nick :Syntax is !op \#chan" ; return...
by simo
Sun Sep 17, 2023 10:55 am
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17880

Why not use chanserv for that? we use chanserv but opers not around all time to op chanops you could try this : set chanopschan "#chanops" bind pub -|- !op Pub:OP:monotor-channel proc Pub:OP:monotor-channel {nick host hand chan text} { set text [regsub -all -- {\s{2,}} [string trim [strip...
by simo
Sat Sep 16, 2023 6:12 am
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17880

The design of chanserv auto - admins/ops/hops list is to work without the need of any oper being around.