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

by CrazyCat
Thu Apr 18, 2024 2:19 am
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 127

Re: Double whois

Proc is this: proc getip {nick uhost handle chan text} { bind raw - 338 ip_from_whois putserv "whois [lindex [split $text] 0 ]" utimer 10 [list unbind raw - 338 ip_from_whois ] } Well, I'll do that: proc getip {nick uhost handle chan text} { set target [lindex [split $text] 0 ] incr ::who...
by CrazyCat
Wed Apr 17, 2024 12:09 pm
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 127

Re: Double whois

Depend on the reply you get: if it contains the nick and an information that the ip is spoofed, you can relaunch a /whois. The danger is that you may flood the server with /whois commands if you don't get the real IP. You should probably add a counter (who($nick)) and stop if you did more than 2 /wh...
by CrazyCat
Sun Apr 14, 2024 12:05 pm
Forum: Eggdrop Help
Topic: whats rong on this.....
Replies: 1
Views: 168

Re: whats rong on this.....

Moderation : Thanks to use [ tcl ] and [ /tcl ] tags

Can you tell us what is the trouble ? Or show the errors you get ?
by CrazyCat
Sat Apr 13, 2024 8:05 am
Forum: Scripting Help
Topic: +v voice ?
Replies: 12
Views: 335

Re: +v voice ?

Peharps can you try to understand what the code does, read the doc and try to adapt. OR, to say that quicker: learn. bind nick - * checkvoice # name of the called procedure is checkvoice proc checkvoice {nick uhost handle chan newnick} { set onchash [md5 [string tolower "${nick}:${chan}"]]...
by CrazyCat
Fri Apr 12, 2024 4:51 pm
Forum: Scripting Help
Topic: +v voice ?
Replies: 12
Views: 335

Re: +v voice ?

By replacing "isvoice" check with "isop" and mode +/-v with +/-o

Small tip: https://docs.eggheads.org/using/tcl-com ... me-channel
by CrazyCat
Fri Apr 12, 2024 2:41 pm
Forum: Scripting Help
Topic: +v voice ?
Replies: 12
Views: 335

Re: +v voice ?

You can do that for the @ (but just op, not aop), I'm not sure you can add the sop.
Eggdrop doesn't know these modes, so it can't check if an op is aop nor sop.
by CrazyCat
Fri Apr 12, 2024 12:44 pm
Forum: Scripting Help
Topic: +v voice ?
Replies: 12
Views: 335

Re: +v voice ?

Oh, I understand :) But not all...
Explain what you want to do.
by CrazyCat
Fri Apr 12, 2024 9:53 am
Forum: Scripting Help
Topic: +v voice ?
Replies: 12
Views: 335

Re: +v voice ?

What is Tcl AOP ?
by CrazyCat
Fri Apr 12, 2024 7:22 am
Forum: Scripting Help
Topic: +v voice ?
Replies: 12
Views: 335

Re: +v voice ?

What do you mean ? The user doesn't get his voice when he regains his previous nick ? I made a little test (and some little modifications): bind nick - * checkvoice proc checkvoice {nick uhost handle chan newnick} { set onchash [md5 [string tolower "${nick}:${chan}"]] set nnchash [md5 [str...
by CrazyCat
Wed Apr 10, 2024 5:22 am
Forum: Scripting Help
Topic: Sajoin??
Replies: 4
Views: 124

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

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

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

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

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

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