Does everything but when it right clicks it doesn't choose any option? I've messed with the uptext still nothing.
Simba Code:
Function Teleporting: Boolean;
var
Color,CTS: Integer;
Coords: TIntegerArray;
Hue,Sat: Extended;
begin
If(Not(LoggedIn))Then Exit;
Color := (1342993);
Coords :=[683, 371, 713, 386];
CTS := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
Hue:= (0.02);
Sat:= (0.07);
GameTab(tab_EQUIP);
if ColorWait(2000, Color, Coords[0], Coords[1], Coords[2], Coords[3], 10) Then
if Debug then
Writeln('Looking for Duel Ring');
begin
HumanMouseBox(Coords[0], Coords[1], Coords[2], Coords[3]);
if(IsUpTextMultiCustom(['Rin','of','due'])) then
if Debug then
Writeln('Found ring');
ClickMouse2(false);
ChooseOptionWait(['Duel', 'uel', 'Arena', 'rena'], 1000);
begin
if WaitMMChange(20, 80, 1000) then
Exit
else
FailSafe('Could not teleport');
end;
end;
end;