| View previous topic :: View next topic |
| Author |
Message |
diMension Voice
Joined: 23 Mar 2007 Posts: 11
|
Posted: Fri Apr 13, 2007 3:27 pm Post subject: Missing Close Brace. |
|
|
| Code: |
bind msgm - * relay:msg
proc relay:msg {nick uhost hand arg} {
if {$nick == "Global"} {
return 1
} elseif {$arg == "The following channel events were found"} {
return 1
} elseif {$arg == "Nothing matched the criteria of your search" {
return 1
} else {
putserv "privmsg #dimbot :Private Message from $nick ($uhost): $arg"
}
|
ERROR : Missing Close Brace - Possible Unbalanced Brace In Comment while executing |
|
| Back to top |
|
 |
Sir_Fz Revered One

Joined: 27 Apr 2003 Posts: 3793 Location: Lebanon
|
Posted: Fri Apr 13, 2007 3:51 pm Post subject: |
|
|
| Code: | | } elseif {$arg == "Nothing matched the criteria of your search" { |
Do you see anything wrong in this line? _________________ Follow me on GitHub
- Opposing
Public Tcl scripts |
|
| Back to top |
|
 |
diMension Voice
Joined: 23 Mar 2007 Posts: 11
|
Posted: Fri Apr 13, 2007 4:13 pm Post subject: |
|
|
| gracias. |
|
| Back to top |
|
 |
|