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

by hlds12
Tue Dec 29, 2009 9:44 pm
Forum: Scripting Help
Topic: bind time dosn't work with PRIVMSG
Replies: 5
Views: 3164

Thank you very much, at last that occurred to me...
by hlds12
Tue Dec 29, 2009 9:28 pm
Forum: Scripting Help
Topic: bind time dosn't work with PRIVMSG
Replies: 5
Views: 3164

arfer wrote:Each bind passes different arguments to the procs they call.
Thanks!
Does this mean that I can't use PRIVMSG at all? I could just do this

Code: Select all

proc myproc {minute hour day month year} {
  # code here
} 
and this

Code: Select all

putserv "PRIVMSG $minute : TEST TEXT" 
but that won't work.
by hlds12
Tue Dec 29, 2009 8:22 pm
Forum: Scripting Help
Topic: bind time dosn't work with PRIVMSG
Replies: 5
Views: 3164

bind time dosn't work with PRIVMSG

I tried this: bind pub - !force myproc bind time - "?0 * * * *" myproc proc myproc {nick uhost hand chan text} { set Something "text here" set writeFile [open file.txt w] puts $writeFile $Something close $writeFile putserv "PRIVMSG $chan : TEST TEXT" } When I write !for...