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
Sun Jan 28, 2024 11:19 am
Forum: Scripting Help
Topic: Timer script
Replies: 5
Views: 376

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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