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

by simo
Sun Apr 07, 2024 9:35 am
Forum: Scripting Help
Topic: Anti Join Part with +R if multiple JoinParts
Replies: 0
Views: 599

Anti Join Part with +R if multiple JoinParts

greetz , im using this tcl wich checks join parts and sets ban if they join and part within 3 seconds and if multiple nicks join part it sets +R as well, but for some reason it sets +R even if a nick (who was already on channel) just parts and then a join part happens by another nick right after tha...
by simo
Fri Apr 05, 2024 5:52 pm
Forum: Script Requests
Topic: Repeat kick on specific command or text
Replies: 7
Views: 655

Re: Repeat kick on specific command or text

bind pubm * "% .tell*" Repeated:Static-Text set chantexttrigger "4:30" proc Repeated:Static-Text {nick uhost hand chan text} { if {[matchattr $hand of|of $chan] || [isop $nick $chan] || [ishalfop $nick $chan] || [isbotnick $nick]} { return 0 } global chantexttrigger chantextfloo...
by simo
Tue Apr 02, 2024 10:17 am
Forum: Script Requests
Topic: Repeat kick on specific command or text
Replies: 7
Views: 655

Re: Repeat kick on specific command or text

bind pubm * "% .tell*" Repeated:Static-Text set chantexttrigger "4:30" proc Repeated:Static-Text {nick uhost hand chan text} { if {[matchattr $hand of|of $chan] || [isop $nick $chan] || [ishalfop $nick $chan] || [isbotnick $nick]} { return 0 } global chantexttrigger chantextfloo...
by simo
Fri Mar 29, 2024 9:52 am
Forum: Scripting Help
Topic: gline joinflood to snircd
Replies: 13
Views: 9478

Re: gline joinflood to snircd

using it like this : # On-Join Clone Checker Version 0.1 # # author: SpiKe^^ # # e-mail: spike<at>mytclscripts<dot>com # # webpage: http://mytclscripts.com/ # # this script requires EGGDROP v1.6.17 or higher # # this script requires TCL v8.4 or higher # ##############################################...
by simo
Thu Mar 28, 2024 11:46 pm
Forum: Scripting Help
Topic: gline joinflood to snircd
Replies: 13
Views: 9478

Re:

Here's the first try, see if it runs:) I have not tested on it any yet. # On-Join Clone Checker Version 0.1 # # author: SpiKe^^ # # e-mail: spike<at>mytclscripts<dot>com # # webpage: http://mytclscripts.com/ # # this script requires EGGDROP v1.6.17 or higher # # this script requires TCL v8.4 or hig...
by simo
Thu Mar 28, 2024 12:33 pm
Forum: Script Requests
Topic: badwords tcl with regexp
Replies: 2
Views: 309

Re: badwords tcl with regexp

thanks CC
by simo
Thu Mar 28, 2024 10:49 am
Forum: Script Requests
Topic: badwords tcl with regexp
Replies: 2
Views: 309

badwords tcl with regexp

greetz, i was trying out this small badwords tcl with regexp the idea is to have it strip colorscodes bold and such and strip from duplicate characters and non alphabetical/digit and have comon chars replaces wich are often used to evade badwords like 0 for o 3 for e and such and after all that to h...
by simo
Wed Feb 14, 2024 7:01 am
Forum: Script Requests
Topic: Ignore all commands in a channel
Replies: 2
Views: 392

Re: Ignore all commands in a channel

your using the wrong aproach you should have the public !commands restricted to the channels you want them to be used in i would use for example setudef for that.
by simo
Wed Feb 07, 2024 6:35 pm
Forum: Script Requests
Topic: public command with nickserv auth check
Replies: 3
Views: 479

Re: public command with nickserv auth check

Dalnet doesn't have that afaik
by simo
Wed Feb 07, 2024 4:03 pm
Forum: Script Requests
Topic: public command with nickserv auth check
Replies: 3
Views: 479

public command with nickserv auth check

greetingz, i had a request to add a auth check if the nick is auth via nickserv and is validated in eggdrop users file in this code im not sure how to integrate this in a 307 numeric raw check if the nick is identified as on some network like dalnet where we plan to use this users dont have a static...
by simo
Sun Jan 28, 2024 11:19 am
Forum: Scripting Help
Topic: Timer script
Replies: 5
Views: 543

Re: Timer script

let me start with asking : What do u expect it to do ?
by simo
Sun Jan 28, 2024 8:30 am
Forum: Scripting Help
Topic: Timer script
Replies: 5
Views: 543

Re: Timer script

it helps to post entire script instead of a part of it, also its not clear what you mean by "how to set timer" as the code already contains a timer
by simo
Fri Oct 27, 2023 10:30 am
Forum: Script Support & Releases
Topic: RSS Reader help.
Replies: 9
Views: 8641

if the feed indeed contains emojis try to remove

[string tolower

dont forget the ] as well

from the tcl
by simo
Sun Oct 15, 2023 9:57 am
Forum: Scripting Help
Topic: Add channel to to this script
Replies: 9
Views: 8988

so this is the function of this script * Trivia (ux@Tri.via) has joined #aslpls * aslbot sets mode: +b *!*@Tri.via * Trivia was kicked by aslbot (No CTCP version reply) I think it will kick all the users joining the channel :D meaning u tested it and thats what happened or you just think that happe...
by simo
Sun Oct 15, 2023 6:24 am
Forum: Scripting Help
Topic: Add channel to to this script
Replies: 9
Views: 8988

or/and you could use it with public command to enable/disable in channel Syntax: !version on/off bind PUB n !version Pub:Version:Checker setudef flag vcheck proc Pub:Version:Checker {nick uhost hand chan arg} { switch -nocase -- [lindex [split $arg] 0] { on { if {[channel get $chan vcheck]} { putser...