I am running eggdrop1.8 as i need ssl
Anyway.. this will probably happen on all versions.
I am wondering.. i need to trigger 2 scripts from one !trigger.
But at the moment. Only one will operate at a time and I cannot combine scripts
Thanks,
Louis
squeege wrote:Hi,
I am running eggdrop1.8 as i need ssl
Anyway.. this will probably happen on all versions.
I am wondering.. i need to trigger 2 scripts from one !trigger.
But at the moment. Only one will operate at a time and I cannot combine scriptsAnyway to fix this?
Thanks,
Louis
Code: Select all
bind pub - !test wrapProcs
proc wrapProcs {nick uhost hand chan text} {
proc1 $nick $uhost $hand $chan $text
proc2 $nick $uhost $hand $chan $text
}
proc proc1 {nick uhost hand chan text} {
putserv "privmsg $chan :procedure 1 is active!"
}
proc proc2 {nick uhost hand chan text} {
putserv "privmsg $chan :procedure 2 is active!"
}