Code: Select all
if {$nick == "DJCharlie"} {
...rest of proc goes here...
}
Thanks in advance!
Code: Select all
if {$nick == "DJCharlie"} {
...rest of proc goes here...
}
Code: Select all
...
if {conditional1 || conditional2} {
...
Code: Select all
...
switch $nick {
"DJCharlie" -
"NML_375" -
"SomeOtherDude" {
...
}
}
..