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.
Old posts that have not been replied to for several years.
minotaur
Voice
Posts: 19 Joined: Sun Jul 06, 2003 8:36 pm
Post
by minotaur » Tue Jul 15, 2003 8:21 pm
proc { chan type } {
puthelp "PRIVMSG $chan :$type"
}
now in another program i want to start the script with the 2 variables chan und type. But how can i execute this program. With bind i know it but how in other programs?
spock
Master
Posts: 319 Joined: Thu Dec 12, 2002 8:40 pm
Post
by spock » Tue Jul 15, 2003 9:57 pm
Code: Select all
proc <procname> { chan type } {
puthelp "PRIVMSG $chan :$type"
}
now in another procedure just use
<procname> arg1 arg2
photon?