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

by FossilAtrum
Fri Sep 29, 2006 3:55 am
Forum: Script Requests
Topic: Respond to specific nick
Replies: 2
Views: 2343

RE: Respond to specific nick

Your code would probly look something like this : bind pub - !dinner pub:dinner proc pub:dinner {nick uhost hand channel arg} { set respondnick "jack" if {($nick == $respondnick)} { putserv "PRIVMSG $channel :\001ACTION gives $nick\001 dinner" } } To trigger the proc, one would t...
by FossilAtrum
Wed Sep 27, 2006 2:46 am
Forum: Scripting Help
Topic: stuck with tcl update query for mysql DB
Replies: 1
Views: 2481

flyingboabab, at first glance, it appears that your problem is with your sql-query, and not so much the rest of the code. Rather try something like the following: set text [mysqlescape $text] set sql "REPLACE DELAYED prices SET price='$text' WHERE city ='NY' " I hope this helps. FossilAtrum