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

by zigana
Thu Aug 16, 2007 7:38 pm
Forum: Eggdrop Help
Topic: What does this mean in the ".whom" command...
Replies: 4
Views: 2845

- ### whom [channel/*] Displays a list of users on the current partyline channel. For example: Nick Bot Host ---------- --------- -------------------- *Wcc Anakha telnet@xxx.atlaga.adelphia.net [idle 8m] *Blah Anakha telnet@xxx.atlaga.adelphia.net Total users: 2 Each user's nickname will be listed ...
by zigana
Sat Aug 11, 2007 9:27 am
Forum: Script Requests
Topic: Script Problem for a simple copy script
Replies: 20
Views: 10607

Try this one.

Code: Select all

set newsBot {GWNEWS-(0[1-9]|1[0-5])$}
by zigana
Fri Aug 10, 2007 1:43 am
Forum: Scripting Help
Topic: \002\\002 not work
Replies: 3
Views: 3042

You're welcome. I did mean to explain why as well but I must have backstepped too much. :o As the "\" character is a special character it must be escaped to enable it as plain text. The same applies to other special chars, such as "$" or "[", you must use "\$"...
by zigana
Fri Aug 10, 2007 12:59 am
Forum: Scripting Help
Topic: \002\\002 not work
Replies: 3
Views: 3042

Try \002\\\002
by zigana
Wed Aug 01, 2007 4:11 am
Forum: Eggdrop Help
Topic: ONOTICE on IRC.
Replies: 3
Views: 2594

On most networks you just send NOTICE @#channel ...
by zigana
Thu Jul 26, 2007 7:15 pm
Forum: Scripting Help
Topic: regexp and string trim [Resolved]
Replies: 2
Views: 2198

OK Cheers I shall leave it at that. :)
by zigana
Thu Jul 26, 2007 12:21 pm
Forum: Scripting Help
Topic: regexp and string trim [Resolved]
Replies: 2
Views: 2198

regexp and string trim [Resolved]

Hi I'm just trying to get a grip on TCL scripting.

Code: Select all

        if {[regexp -- (expression) $var newvar] == 1} {
           set newvar [string trimright $newvar <chars>]
Is there a ?better? way to combine those two lines, Or is it best to leave them seperate?