
Originally Posted by
KFC

i was looking at that but i wasn't sure how it works, You reccomend a certain tutorial?
Simba Code:
Repeat
MMouse(X, Y, 0, 0);
if isUptextMultiCustom(['meh', 'sheep', 'whatever']) then
ClickMouse2(False);
Until(OptionsExist(['Option 1', 'Option 2', 'Option 3', 'However many u want'], False);
A TStringArray is just a whole "Bunch" of strings.. aka an Array.
Can be ['fssgs', 'fsgsgs', 'ainfsdgnsdgs', 'fsfs gdsgs gdg'] <--- can contain spaces in the string, each option is separated by a comma and an array always has square brackets.
:Boolean can only be true or false..
So finally:
Simba Code:
OptionsExist([you array of strings here], Move the mouse or not? can be false or true)..
Example: OptionsExists(['gdgds' , 'sgsdg', 'gsgs'], False);... will look for those options and will NOT hover over them.