Simba Code:
WaitOptionMulti(['Option1', 'Option2', 'Option3'], 600);
Will choose whichever is found first. Also you can do:
Simba Code:
WaitOptionMulti(['ast', 'ral', 'ru', 'une', 'law', 'ear', 'th ru'], 600); //will find astral rune, earth rune, etc.. notice how I split the options? That is an array of strings.
Another example..
Simba Code:
var
Meh: TStringArray;
begin
Meh := ['o1', 'o2', 'o3'];
WaitOptionMulti(Meh, 600);
end.
You can even use it as function parameters. Do what your mind can imagine.