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
Thu Mar 28, 2024 10:49 am
Forum: Script Requests
Topic: badwords tcl with regexp
Replies: 2
Views: 246

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

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

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

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

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

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

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

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

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...
by simo
Sun Oct 15, 2023 6:15 am
Forum: Scripting Help
Topic: on connect bad realname
Replies: 7
Views: 7734

PeLL wrote:Simo :

That thing you put in after updating doesn't work well.
The other previous one that you posted does work very well. (I've realized now).
both work fine for me
by simo
Fri Oct 13, 2023 6:07 am
Forum: Scripting Help
Topic: gline not working
Replies: 5
Views: 6644

i have edited it a bit so the *@ is added if not used in $target as thats what gline

takes user@some.host.here.com
by simo
Tue Oct 10, 2023 10:36 am
Forum: Scripting Help
Topic: gline not working
Replies: 5
Views: 6644

try this : bind pub n !gline PubAdd:G-Line proc PubAdd:G-Line {nick host hand chan text} { set text [regsub -all -- {\s{2,}} [string trim [stripcodes * $text]] { }] set items [split $text] if {[llength $items] < 1 } { putserv "notice $nick :Syntax\: !gline \<duration\> \<ident@host\> \<reason\>...
by simo
Tue Oct 10, 2023 5:59 am
Forum: Scripting Help
Topic: gline not working
Replies: 5
Views: 6644

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

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

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 }...