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

by SpiKe^^
Thu Jan 06, 2022 12:47 am
Forum: Scripting Help
Topic: wont let me set maxbans on dalnet
Replies: 9
Views: 3175

why the extra : in the mode command¿
by SpiKe^^
Fri Dec 31, 2021 10:35 pm
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 8331

set created [getuser $uhandle XTRA created] set createdtime [clock format $created -format "%d.%m.%Y - %H:%M:%S"] putserv "NOTICE $nick :$uhandle - [chattr $uhandle] [getuser $uhandle HOSTS] $createdtime" I believe this is the more correct way to use the getuser XTRA command. Th...
by SpiKe^^
Fri Dec 31, 2021 5:49 pm
Forum: Script Support & Releases
Topic: Public Kick/Ban Script (w/ stored info & extended mutes)
Replies: 30
Views: 12069

Perhaps this can be a usable compromise. Find this line in the script } elseif {[string is digit -strict $item]} { set btime $item and Add these lines just after that line... } elseif {[string match {[+%]?*} $item]} { lappend nickls [string trimleft $item "+%"] } elseif {[string match &quo...
by SpiKe^^
Fri Dec 31, 2021 2:43 am
Forum: Script Requests
Topic: GSM ARENA
Replies: 7
Views: 3055

What was the exact command you typed that caused that error??
by SpiKe^^
Thu Dec 30, 2021 11:15 am
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 8331

set created [lindex [getuser $uhandle XTRA] 0 1] set createdtime [clock format $created -format "%d.%m.%Y - %H:%M:%S"] putserv "NOTICE $nick :$uhandle - [chattr $uhandle] [getuser $uhandle HOSTS] $createdtime" That will only work if the created info is the only data in the EXTRA...
by SpiKe^^
Wed Dec 29, 2021 8:48 pm
Forum: Script Requests
Topic: Idle Action Help
Replies: 6
Views: 2261

After checking the code one more time, the script already has an exempt user system, but I see a couple small issues with that... 1) Search for this string in your code... ![matchattr $nick |$dvprotect $chan] and make it look more like this... ![matchattr [nick2hand $nick $chan] $dvprotect|$dvprotec...
by SpiKe^^
Wed Dec 29, 2021 3:18 pm
Forum: Script Requests
Topic: Idle Action Help
Replies: 6
Views: 2261

nope, sorry...

If you are looking to exempt some users from the script, looks to me like you should add them to the eggdrop user file with +ov maybe.
by SpiKe^^
Wed Dec 29, 2021 2:12 pm
Forum: Script Requests
Topic: Idle Action Help
Replies: 6
Views: 2261

AdmiraL

I'm not sure I understand the goal of this request, maybe you can explain better:)

Have you tried contacting the author, MadaliN?
by SpiKe^^
Mon Dec 27, 2021 12:29 pm
Forum: Script Support & Releases
Topic: Public Kick/Ban Script (w/ stored info & extended mutes)
Replies: 30
Views: 12069

replace this existing line..

Code: Select all

set bmask "*![lindex [split $chost @] 0]@*"
with this...

Code: Select all

set bmask "*!*[string trimleft [lindex [split $chost @] 0] "~"]@*"
by SpiKe^^
Fri Dec 17, 2021 12:55 pm
Forum: Script Requests
Topic: .chanset or .set on channel/pm
Replies: 14
Views: 8881

Chanset TCL by BLaCkShaDoW

From https://tclscripts.net/community/tcl-snippets/chanset-tcl/ # #Chanset TCL # # !chanset <+/-settting> ; setting <value> # # BLaCkShaDoW Production ############################################################################# set set_flags "nm|nm" #######################################...
by SpiKe^^
Thu Dec 16, 2021 6:46 pm
Forum: Script Support & Releases
Topic: New [ Public Command Compilation TCL ] [ 0day (xc) Our ]
Replies: 4
Views: 5577

Let us know how it works out...
by SpiKe^^
Sun Dec 12, 2021 5:51 pm
Forum: Scripting Help
Topic: Auto announcement every 10 min after nick gets halfop
Replies: 31
Views: 9406

OK, I bet I know what is going on:) Let us assume that the recently added, infinitely repeating timer Does Not function as one might Hope and Expect it to.... bind mode - "#% *+*h*" auto:announcement proc auto:announcement {nick uhost handle chan mode target} { if {[isbotnick $target] || !...
by SpiKe^^
Sun Dec 12, 2021 4:22 pm
Forum: Scripting Help
Topic: Auto announcement every 10 min after nick gets halfop
Replies: 31
Views: 9406

Maybe it's just a case issue with the array element name? one last try... bind mode - "#% *+*h*" auto:announcement proc auto:announcement {nick uhost handle chan mode target} { if {[isbotnick $target] || ![string equal -nocase $chan "#test"]} { return } set tglow [string tolower ...
by SpiKe^^
Sun Dec 12, 2021 3:31 pm
Forum: Scripting Help
Topic: Auto announcement every 10 min after nick gets halfop
Replies: 31
Views: 9406

bind mode - "#% *+*h*" auto:announcement proc auto:announcement {nick uhost handle chan mode target} { if {[isbotnick $target] || ![string equal -nocase $chan "#test"]} { return } if {[info exists ::ish($target)]} { return } putserv "PRIVMSG $chan :$target is on air tune in...
by SpiKe^^
Sat Dec 11, 2021 12:20 pm
Forum: Scripting Help
Topic: Auto announcement every 10 min after nick gets halfop
Replies: 31
Views: 9406

fix the spelling @ proc repeat:annoucement