
Originally Posted by
Viral
for you walking to bank procedure, your dtm is most likely done incorrectly, and why not, instead of trying to creat a bitmap, ect, use findwatercolor for walking to the tree's? I think that would be more reliable, as you can always see the water from the bank.
haha, i suck at making dtms, but i guess i could try if youd like.
Yeah exactly I thought of doing the water clicking:P and my autocolorthis function is of the water bitmap so I thought it was the same. If you want make a dtm be my guest and I can try it and see if it works. Also, my compass is facing west when I do my dtm if your planning on making one.
Edit: ughhh waterwalk aint working either:S
SCAR Code:
begin
if not RadialWalk(dirtcol, 270, 340, 70, 5, 5)then
MakeCompass('w');
WriteLn('Couldnt Use Radial...Using WaterWalk');
WaterWalk(270,330,60,15,2, 2, 2, 2);
begin
if not WaterWalk(270,330,60,15,2, 2, 2, 2)then
WriteLn('Couldnt Use WaterWalk...Using Symbol');
MakeCompass('w');
LoadSymbolBitmapColor('fish');
wait(200+random(154));
FindSymbol(x,y,'fish');
wait(500+random(600));
mouse(x,y,2,2,true);
end;