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

by CrazyCat
Wed Apr 10, 2024 5:22 am
Forum: Scripting Help
Topic: Sajoin??
Replies: 4
Views: 154

Re: Sajoin??

If your eggdrop is not on the target channel, it's normal. You can choose between 2 options: 1. have your eggdrop on #djsohbet and it'll work without error 2. remove the && [lsearch [chanlist $::ctarget] $nick]==-1 part in the condition and your eggdrop will do the sajoin command even if the...
by CrazyCat
Wed Apr 10, 2024 3:34 am
Forum: Scripting Help
Topic: Sajoin??
Replies: 4
Views: 154

Re: Sajoin?

First, your eggdrop must be ircop to use these feature. Invite seems better, user join if he want. And which criteria do you want to use to make user coming into target channel ? Everybody ? BTW, here is the simplest script: set ctarget "#djsohbet" set cfrom "#dj" proc forcejoin ...
by CrazyCat
Mon Apr 08, 2024 2:09 am
Forum: Eggdrop Help
Topic: eggdrop1.6.21 Compiling (make) error
Replies: 5
Views: 256

Re: eggdrop1.6.21 Compiling (make) error

a specific .tcl will only work on that version of eggdrop ¯\_(ツ)_/¯ I'm quite surprized, usually scripts working with 1.6.21 works with 1.8.x and 1.9.x, sometime they require a few adaptation but there is no real incompatibility. Peharps we can help you with the script rather helping you keepin an ...
by CrazyCat
Sun Apr 07, 2024 5:50 pm
Forum: Scripting Help
Topic: Message ?
Replies: 7
Views: 204

Re: Message ?

pektek wrote: Sun Apr 07, 2024 12:51 pm I don't understand what you mean chinfo ?
Go in eggdrop's party-line and type .help chinfo
by CrazyCat
Sun Apr 07, 2024 10:30 am
Forum: Scripting Help
Topic: Message ?
Replies: 7
Views: 204

Re: Message ?

Add a chinfo only for the owner.
Or you can do:
proc greet {nick uhost handle chan} {
   if {![matchattr $handle |+n $chan]} { return }
   putserv "PRIVMSG $chan :hey welcome $nick"
}
bind join |+n * greet
by CrazyCat
Sun Apr 07, 2024 7:01 am
Forum: Scripting Help
Topic: Message ?
Replies: 7
Views: 204

Re: Message ?

You can use .chinfo to add a greet message to an user (channel specific or not) and do .chanset #channel +greet to activate the display of the userinfo on #channel
by CrazyCat
Fri Apr 05, 2024 1:35 am
Forum: Eggdrop Help
Topic: eggdrop1.6.21 Compiling (make) error
Replies: 5
Views: 256

Re: eggdrop1.6.21 Compiling (make) error

Why 1.6.21 ? Eggdrop is now in version 1.9.5, the 1.6.xx branch is dead since 2016
by CrazyCat
Fri Mar 29, 2024 12:56 pm
Forum: Scripting Help
Topic: gline joinflood to snircd
Replies: 13
Views: 9298

Re: gline joinflood to snircd

Add some putlogs to check what happens.
Here is a small addition of putlog to show you how you can have relevant informations: https://tools.eggdrop.fr/privatebin/?fc ... SqdzBYgFYm
by CrazyCat
Fri Mar 29, 2024 3:02 am
Forum: Script Requests
Topic: Repeat kick on specific command or text
Replies: 7
Views: 455

Re: Repeat kick on specific command or text

Why use a tcl when you have the native setting flood-msg ?
by CrazyCat
Thu Mar 28, 2024 11:03 am
Forum: Script Requests
Topic: badwords tcl with regexp
Replies: 2
Views: 143

Re: badwords tcl with regexp

Regexp synopsis: regexp ?switches? exp string ?matchVar? ?subMatchVar subMatchVar ...? You use bword as exp (must be a regular expression) and textedit as string (must not be a regular expression). you'd better transform bword rather than textedit: % set bword "test" test % set textedit &q...
by CrazyCat
Sat Mar 23, 2024 4:26 am
Forum: Eggdrop Help
Topic: linking an eggdrop with chat.ai oder similar
Replies: 2
Views: 191

Re: linking an eggdrop with chat.ai oder similar

You already posted viewtopic.php?t=21344 which seems to be the same idea/project
by CrazyCat
Mon Mar 18, 2024 5:34 am
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 778

Re: clock

The last script I gave works like a charm, did you think to do .chanset #channel +sharetime ?

If you want to check: ircs://irc.zeolia.chat/test :
10:32:02 <@Jarvis> Senin Maret 18 2024 -- 05:32:00 PM
10:34:02 <@Jarvis> Senin Maret 18 2024 -- 05:34:00 PM
by CrazyCat
Sun Mar 17, 2024 7:01 pm
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 778

Re: clock

Try this: setudef flag sharetime set sharetime(format) "%A %B %d %Y -- %I:%M:%S %p" proc sharetime {min hour day month dow} { set now [clock format [clock seconds] -timezone :Asia/Makassar -format $::sharetime(format)] foreach chan [channels] { if {[channel get $chan sharetime]} { puthelp ...
by CrazyCat
Sun Mar 17, 2024 1:41 pm
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 778

Re: clock

Well, I don't understand what your really expecting.

Can you just describe, in simple words, what the script must do ? Just tell the time (in your language) every x minutes on channels where it's activated ?
And the public command is used to force the script to say the time on the current channel ?
by CrazyCat
Sun Mar 17, 2024 12:36 pm
Forum: Scripting Help
Topic: clock
Replies: 17
Views: 778

Re: clock

Pastebin your full script, the previous code you post doesn't have any line looking like "set otime $replacetime"