on *:START: {
; turn on voice, add words to listen for
vcmd on
vcadd Hello World
vcadd Hello Britain
vcadd Hello Australia
}
on *:VCMD:Hello *:*: {
; Event reacts when command sequence heard
; Just prints out the text in different colours
if ($2 == World) %col = 2
else %col = 3
echo %col -a Greetings, $2
}