ok so i'm just having a code block right now.... so I want it to find the waitoption and not click it because it is execute differently after it chooses one of the wait options and i need to know which one it chooses to continue... is there like a find wait option function or something or what would be the best way of going about this....
Here is what I was trying to do but wouldnt work because the waitoptionmulti will choose the waitoptions and wont return which it chooses.
Simba Code:
ClickMouse2(false);
if WaitOptionMulti(['nlock'], 200) then//this would be the find part
WaitOptionMulti(['nlock'], 200);//this would choose it if found
if WaitOptionMulti(['pen'], 200) then
begin
WaitOptionMulti(['pen'], 200) ;
//all of my other stuff
end;