Simba Code:function MouseChoose(var x,y,rx1,ry1:Integer; Z:String):Boolean;
begin
Mouse(x,y,rx1,ry1,False);
Result := ChooseOption(Z);
end;
It's so much more easier than typing it out >.>Simba Code:function MouseChooseEx(var x,y,rx1,ry1,WaitTime:Integer; Z:String):Boolean;
begin
Mouse(x,y,rx1,ry1,False);
Result := WaitOption(Z, WaitTime);
end;


Reply With Quote















