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

by dwickie
Sun Mar 30, 2008 9:00 am
Forum: Eggdrop Help
Topic: starting eggdrop >> invalid command name "
Replies: 4
Views: 3203

Re: starting eggdrop >> invalid command name "

[13:29] invalid command name " chat.lanlos.org:6668 " while executing "{ chat.lanlos.org:6668 }" (file "eggdrop.conf" line 833) [13:29] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR) Check your server settings, the one you have in config its most likely wrong. It shoul...
by dwickie
Sat Mar 08, 2008 9:05 am
Forum: Shell & Bouncer Help
Topic: psybnc log each channel in separate log file?
Replies: 5
Views: 14120

donking wrote:do you know any other bouncers that can do this?
Try sBNC (http://shroudbnc.info/) it has tcl scripts, so its pretty simple to do with logging whatever you want
by dwickie
Thu Oct 11, 2007 9:57 am
Forum: Shell & Bouncer Help
Topic: Eggdrop & sBNC
Replies: 8
Views: 15663

Ok, I am still having a problem. I tried changing the opchars, and added the ! and still no luck. This has got me stumped... When the status comes up in the terminal it says that they are no ops in the channel, but other times (when I op it manually) it will go through and op everyone in the AOP li...
by dwickie
Wed Oct 10, 2007 7:14 am
Forum: Shell & Bouncer Help
Topic: Whats´s wrong with psyBNC 2.3.2-7?
Replies: 5
Views: 11904

Re: Whats´s wrong with psyBNC 2.3.2-7?

Gargantua wrote:All the commands used for adding networks and servers miserable fails and theres no working multinetwork.
be more specific?
by dwickie
Sun Oct 07, 2007 7:25 pm
Forum: Scripting Help
Topic: mysql search count
Replies: 1
Views: 1586

Re: mysql search count

If I search someting in the mysql db, after the results it shows someting like: 1 row in set (0.07 sec) Is there a way to use that info, so it can be announced in the irc channel? What i am looking for is the count of the result that it found and show that in the channel. I al ready tried it with: ...
by dwickie
Tue Mar 27, 2007 4:29 am
Forum: Scripting Help
Topic: sql db size
Replies: 1
Views: 2059

Re: sql db size

bigmike wrote:hey

how would i be able to show my sql db size in MB's in tcl, becuase i havent seen any sql commands which would output db size in MB's.
SHOW TABLE STATUS;
by dwickie
Sat Feb 03, 2007 9:42 am
Forum: Scripting Help
Topic: different announcement by different count
Replies: 2
Views: 3013

something like that?

Code: Select all

set maxresults 10
if {$cnt>=$maxresults} {
  putserv "PRIVMSG $chan :found $cnt results: sending latest $maxresults result:"
} else {
  putserv "PRIVMSG $chan :found $cnt results: sending result:"
}
by dwickie
Tue Jan 30, 2007 12:19 pm
Forum: Eggdrop Help
Topic: adding users with same hostmask
Replies: 3
Views: 3684

Re: adding users with same hostmask

this is not exact hotmask format. Its like nick!ident@somehost.com. So yes, you can add different hotmasks using wildcards.
like:
*!*ident1@somehost.com
Nick*!*ident@somehost.com

etc.etc...
by dwickie
Tue Jan 30, 2007 9:21 am
Forum: Scripting Help
Topic: Choose Random Nick From Channel
Replies: 5
Views: 4650

Code: Select all

set nicks [chanlist $chan]
set randnick [lindex $nicks [rand [llength $nicks]]
by dwickie
Tue Oct 17, 2006 10:38 am
Forum: Eggdrop Help
Topic: joining a +H chan [SOLVED]
Replies: 9
Views: 11273

+H is on linknet and allows to join only clients, with +h mode (hide ip) so easiest step is to modify .conf inside proc evnt:init_server {type} { part, replace putquick "MODE $botnick +i-ws" with putquick "MODE $botnick +ih-ws" , this will automatically add +h usermode after conn...
by dwickie
Wed Sep 20, 2006 4:26 pm
Forum: Scripting Help
Topic: [SOLVED] mysqltcl - windrop
Replies: 2
Views: 3539

Re: mysqltcl - windrop

Access wrote:Problem:
The Mysql-Server runs on a remote-server and no one is installed local, is this my problem?
no, problem is you dont have mysqltcl binaries in windrop
by dwickie
Mon Jul 17, 2006 5:58 pm
Forum: Scripting Help
Topic: Implmenting MySQL into PreBot TCL
Replies: 4
Views: 6250

you really think, someone is going to give you complete "PreBot" or whatever script?? use search -> mysqltcl -> *click* *click* aah what we found? :lol: http://forum.egghelp.org/viewtopic.php?t=9819 (almost same topic name, strange, isnt it? try read my reply in that topic *again* )
by dwickie
Mon Jul 17, 2006 4:27 pm
Forum: Scripting Help
Topic: Implmenting MySQL into PreBot TCL
Replies: 4
Views: 6250

use search button :roll:
by dwickie
Fri Jul 07, 2006 4:28 am
Forum: Scripting Help
Topic: Help with regsub
Replies: 2
Views: 3210

Code: Select all

regsub -all {\s{5,}} $html "" html
this will replace more than 5 spaces
by dwickie
Fri Jun 02, 2006 9:19 pm
Forum: Scripting Help
Topic: locking !cmd to a channel
Replies: 7
Views: 6082

Code: Select all

proc pub:servers {nick uhost hand chan text} {
  set chan [string tolower $chan]
  if {$chan == "#foo" || $chan == "#bar"} {
|| == "OR"
&& == "AND"