Post your code. Also, I notice that there are 3 ladders in the minimap view, you could use a quick objDTM
, some sample code (use the objDTM tool that comes with it now to create the actual code):
Simba Code:
Procedure LocateSilver;
begin
if ObjDTMWalk('632:42:4:1:7:622:103:1:7:653:86:1:7:645:105:1:7:646:61', 0, 100, 80, True) then
begin
wait(500 + random(250));
MakeCompass('n');
WriteLn('location is now silver')
end
else WriteLn('could not locate silver');
end;
EDIT: ok I see the far ladder would probably be out of view if you were any closer to the northern ladder, (which is the goal, correct?), so you could say, if not ObjDTMWalk(asdf) then search for the object (findobjcustom?).
Another strategy you could use is to make the compass north, then lower your angle all the way down, maybe you could see it then, without walking?