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

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

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

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


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

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

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

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

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

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

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

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

lets start with :

what are u expecting it to do?

and what error does it output if any ?
by simo
Fri Sep 01, 2023 9:31 am
Forum: Script Requests
Topic: debug on connect
Replies: 7
Views: 4389

check this thread for the use of colors :

http://forum.egghelp.org/viewtopic.php?p=104917
by simo
Thu Aug 31, 2023 2:29 pm
Forum: Script Requests
Topic: debug on connect
Replies: 7
Views: 4389

Btw there is a module in inspircd chanlog that does output to a channel as well like connect disconnect nickchange filters and so on
by simo
Wed Aug 30, 2023 8:44 pm
Forum: Script Requests
Topic: debug on connect
Replies: 7
Views: 4389

Try this if it works as expected. set outputchan "#debug" bind raw - NOTICE server:notices proc server:notices {from keyword text} { global outputchan set text [regsub -all -- {\s{2,}} [string trim [stripcodes * $text]] { }] if {[regexp -nocase { REMOTECONNECT: Client connecting at (\S+\:)...
by simo
Mon Aug 21, 2023 11:57 am
Forum: Scripting Help
Topic: need help with warn script
Replies: 11
Views: 7418

lets start with what are you trying to achieve ?