I scanned the posts and didn't see anything about this - wondering if it would be possible to include a simple switch/case function in the script host - I'm building an eggdrop-style partyline and have probably a couple dozen commands I want to implement.. using if/elseif seems messy to me.. I'd love to be able to do something like:

console_command_parse {
switch $1 {

case ".jump" {
;jump code
}

case ".whom" {
;whom code
}
}
}

Tim