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
Sat Oct 07, 2023 6:42 am
Forum: Script Support & Releases
Topic: Anti Spam by KAMI
Replies: 4
Views: 5363

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

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

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

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

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

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


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

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

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

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

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

The design of chanserv auto - admins/ops/hops list is to work without the need of any oper being around.
by simo
Fri Sep 15, 2023 8:01 pm
Forum: Scripting Help
Topic: Ircop eggdrop bot with SACommands
Replies: 26
Views: 17839

can you please do modify in this script for simple use? need it work in #Chanops .. when the chanop need to op in any room by bot, he/she have to type: !op #chan to get op in that room + confirm msg in #chanops he/she opped !deop #chan to drop op + confirm msg in #chanops he/she deopped !hop #chan ...
by simo
Tue Sep 05, 2023 6:37 am
Forum: Script Requests
Topic: Kick users after a certain amount of time spent in the chan
Replies: 32
Views: 24039

Yusif wrote:can someone please help to add to this tcl warn-message on user join that he/she have only 15 minutes to idle in the channel and work for #Help
How about adding that in the channel topic for everyone to see on join?
by simo
Sun Sep 03, 2023 8:12 am
Forum: Script Requests
Topic: Counter help
Replies: 6
Views: 6476

lets start with :

what are u expecting it to do?

and what error does it output if any ?