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 irate
Fri Jun 22, 2007 11:27 am
Forum: Script Requests
Topic: Anti Racism
Replies: 8
Views: 4777

Yeah, I fixed that, and then it showed me that error.
by irate
Fri Jun 22, 2007 1:19 am
Forum: Script Requests
Topic: Anti Racism
Replies: 8
Views: 4777

Does anyone know what's causing that error?
by irate
Thu Jun 21, 2007 5:11 pm
Forum: Script Requests
Topic: Anti Racism
Replies: 8
Views: 4777

There's an error still
Tcl error [filter_racism]: wrong # args: no expression after "if" argument
Thank you.
by irate
Thu Jun 21, 2007 11:56 am
Forum: Script Requests
Topic: Anti Racism
Replies: 8
Views: 4777

Anti Racism

set advwords { "offensive word" } ### Set Advertising Words that you want the Bot to EXEMPT (Dont count as spam) set advexemptwords { "night" } ### Borrowed from awyeahs tcl scripts (www.awyeah.org) ### proc ccodes:filter {str} { regsub -all -- {\003([0-9]{1,2}(,[0-9]{1,2})?)?|\...
by irate
Tue Jun 19, 2007 12:05 am
Forum: Scripting Help
Topic: Take the nick when the bot quits IRC.
Replies: 5
Views: 3769

Thanks, that's what I was looking for.
by irate
Mon Jun 18, 2007 9:06 pm
Forum: Scripting Help
Topic: Take the nick when the bot quits IRC.
Replies: 5
Views: 3769

Well actually, I don't want to login into the telnet every time it quits or rejoins, I want the bot to do it automatically.
by irate
Mon Jun 18, 2007 8:12 pm
Forum: Scripting Help
Topic: Take the nick when the bot quits IRC.
Replies: 5
Views: 3769

Take the nick when the bot quits IRC.

I want the bot to take the nick whenever etari quits IRC, is that possible?

Code: Select all

proc quit:user {nick {nick uhost hand chan} {
if {$nick == "etari"} && {$host == "*!*@etari.*"}
if { [regexp {etari has left IRC} [string tolower $text]] } {
putserv "NICK etari"
}