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

by BlackTux
Sat May 30, 2009 3:05 am
Forum: Scripting Help
Topic: Help on where to begin
Replies: 1
Views: 2020

Help on where to begin

Hi I am kinda new to tcl and eggdrop scripting. I can do the basic bind and proc functions with little to no trouble. I am working on a script now that writes certain text to a file. Then allows that text to be searchable only allowing 10 results. I have the gathering of the info just not sure how t...
by BlackTux
Tue Nov 28, 2006 12:52 am
Forum: Script Requests
Topic: Kill on Clones Script
Replies: 1
Views: 2615

Kill on Clones Script

I am in need of a script that will kill/kline used that clone in 3 seperate channels. I tried using a clonedect script and modify the kick to kill but it is just not working. Any help would be great. This is the Code I have so far. Thanks #Set the next line as the kick msg you want to say set clone_...
by BlackTux
Tue Oct 18, 2005 10:44 pm
Forum: Archive
Topic: A relay script
Replies: 5
Views: 15021

Still not working

I am wondering if it has to do wtih the flags on the two bots.
Bot1 (bot sending info) has Bot2 added with flags +h

Bot2 (bot recieving info) has Bot1 added with flags +h

Do I have to use the console command?
Do I have the right flags set?
by BlackTux
Sun Oct 09, 2005 8:16 pm
Forum: Archive
Topic: A relay script
Replies: 5
Views: 15021

ok

So if I wanted different strings to go to different channels I would make it like: bind bot R rmsg bot:relay proc bot:relay {b k a} { set word [lindex [split $a] 1] if {[string equal -nocase music $word]}{ puthelp "PRIVMSG #main_music :$a" } if {[string equal -nocase movies $word]}{ puthel...
by BlackTux
Sun Oct 09, 2005 2:19 pm
Forum: Archive
Topic: A relay script
Replies: 5
Views: 15021

A relay script

I am looking for a relay script that looks at the second string and sends to the right channel. If it was in mIRC lingo it would be like: on *:TEXT:*:#:{ if ( music isin $2 ) /msg #music $2- | halt if ( software isin $2 ) /msg #software $2- | halt } What I have so far is proc bot:relay {b k a} { put...