Could you post a minimap pic of the area? I'm f2p only and unfamiliar with it :P. If there are any trees (alive or dead), ladders, or rocks or anything like that on the minimap you could definitely use objDTM, I use it for my location finding and relocation in my crafting guild miner.
Example code:
Simba Code:
Procedure RelocateToCenter;
begin
if ObjDTMWalk('585:65:4:1:7:635:76:1:7:643:102:1:7:639:56:1:7:659:90', 0, 100, 80, True) then
begin
wait(500 + random(250));
MakeCompass('n');
WriteLn('location is now guild centre');
RestUntil(RandomRange(90,100));
//RestUp;
end
else
begin
WriteLn('could not relocate to centre');
Terminator;
end;
end;