
Originally Posted by
kiwikiwi
Thanks mate - I found a distinguishable colour. Will try and use that. Any chance you could link me to fixed tbox instructions just in case?
Cheers
Simba Code:
procedure clickTBox();
var
box: TBox;
begin
box:= intToBox(x1,y1,x2,y2); /// TBox coordinates
if (not isLoggedIn()) then
exit;
mousebox(box,mouse_left); /// clicks in a random point within
///defined TBox, defualt is mouse_left
wait(gaussrangeint(300,400));
minimap.waitFlag() / minimap.waitPlayerMoving(); /// personally I always use
/// waitPlayerMoving(). better accuracy /// waitPlayerMoving(). better accuracy
end;