>Speak to Travel Guy
"Hey there! How do you want to travel?"
Car
Boat
Plane
>Car
"Sure thing! Eyes on the road!"
OR
>Boat
"Sure thing! Careful with the waves!"
OR
>Plane
"Sure thing! Have a nice flight!"
ShowMenu ("your_message", split ("name_of_your_item1; name_of_your_item2; etc-etc-etc", ";"), false) {
// whatever Script(s)
}
ShowMenu ("your_message", split ("name_of_your_item1; name_of_your_item2; etc-etc-etc", ";"), false) {
if (result = "name_of_your_item1") {
// whatever script(s)
} else if (result = "name_of_your_item2") {
// whatever script(s)
}
}ShowMenu ("your_message", split ("name_of_your_item1; name_of_your_item2; etc-etc-etc", ";"), false) {
switch (result) {
case ("name_of_your_item1") {
// whatever script(s)
}
case ("name_of_your_item2") {
// whatever script(s)
}
}
}