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

by Xpert
Sun Mar 21, 2004 1:41 pm
Forum: Archive
Topic: admin
Replies: 3
Views: 1146

Write in the party-line window:

Code: Select all

.tcl putserv "kill nick"
And if this bind is working on your eggdrop, it will kill the user :P
by Xpert
Thu Mar 18, 2004 2:34 am
Forum: Archive
Topic: mirc akick addon to tcl script
Replies: 1
Views: 1006

Try the Tcl Archive, there are lots of these commands in there :)
by Xpert
Thu Mar 18, 2004 2:31 am
Forum: Archive
Topic: shared libraries
Replies: 2
Views: 1106

Never mind, i found it.... thanks anyway caesar :P
by Xpert
Wed Mar 17, 2004 2:55 pm
Forum: Archive
Topic: shared libraries
Replies: 2
Views: 1106

shared libraries

When i trying to run the eggdrop on my shell, it says:
./eggdrop: error while loading shared libraries: libtcl.so.0: cannot open shared object file: No such file or directory
Does anybody know what's the problem? :)
by Xpert
Tue Mar 16, 2004 7:07 am
Forum: Archive
Topic: adding color
Replies: 5
Views: 1715

Re: still a problem

putserv "PRIVMSG $chan :\001ACTION \00304Detected A Banned Word by $nick\001" putserv "PRIVMSG $nick :\001ACTION \00304Hey, $nick, Profanity IS BAD,I Will Not allow Such A Thing In Bellchatl!!!\001" putserv "PRIVMSG $chan :\001ACTION \00304Bad Language Is Not Fun, $nick Sho...
by Xpert
Mon Mar 15, 2004 10:07 am
Forum: Archive
Topic: tcl script that refuses to work
Replies: 11
Views: 1962

This code must work: bind notc - "*This nickname is registered and protected*" identify_notc proc identify_notc {nick host hand text dest} { global botnick nickserv identcmd identpass if {[string match -nocase "$nick" "$nickserv"]} { putserv "PRIVMSG $nickserv :$id...
by Xpert
Mon Mar 15, 2004 7:23 am
Forum: Archive
Topic: tcl script that refuses to work
Replies: 11
Views: 1962

Where is the bind of the code?
by Xpert
Mon Mar 15, 2004 7:11 am
Forum: Archive
Topic: tcl script that refuses to work
Replies: 11
Views: 1962

Re: tcl script that refuses to work

Syntax wrote:

Code: Select all

proc identify_notc { nick uh hand text } {
Should be:

Code: Select all

proc identify_notc {nick uh hand text} {
also, you can change this line:

Code: Select all

if {[string match [string tolower $nick] [string tolower $nickserv]]} {
to:

Code: Select all

if {[string match -nocase "$nick" "$nickserv"]} {
:)
by Xpert
Sun Mar 14, 2004 2:18 pm
Forum: Archive
Topic: some help to write a simple script
Replies: 2
Views: 928

How's the txt file?
Do you want it in a public command like "!showlast", or in a timer?
:)
by Xpert
Sun Mar 14, 2004 11:04 am
Forum: Archive
Topic: Best Script For Channel Control ?
Replies: 2
Views: 804

Commands & Control, Channel Control
Contains some public / msg commands related to channel's stuffs.. such as to ban, kick, op, deop, etc.
Try this :)
by Xpert
Sat Mar 13, 2004 2:19 pm
Forum: Archive
Topic: help with public command
Replies: 16
Views: 3515

Your welcome.... :P
by Xpert
Sat Mar 13, 2004 10:19 am
Forum: Archive
Topic: help with public command
Replies: 16
Views: 3515

Sorry, it's my mistake.
Change:

Code: Select all

if {[passwdok $nick $pass]} {
to:

Code: Select all

if {[passwdok $hand $pass]} {
:)
by Xpert
Sat Mar 13, 2004 9:56 am
Forum: Archive
Topic: help with public command
Replies: 16
Views: 3515

This should work: bind pub n !disable pub:disable bind pub n !enable pub:enable bind msg - auth auth:auth bind sign - * auth:signcheck bind msg - deauth auth:deauth bind pub o|o !act pub:act proc pub:act {nick host hand chan arg} { global botnick if {![auth:check $nick]} { return 0 } if {[llength $a...
by Xpert
Sat Mar 13, 2004 8:18 am
Forum: Archive
Topic: help with public command
Replies: 16
Views: 3515

Where are the binds? :)
by Xpert
Sat Mar 13, 2004 6:41 am
Forum: Archive
Topic: help with public command
Replies: 16
Views: 3515

Post here all your commands of the "auth", and i'll try to fix it :)