im trying to make a few death walkback procedures and to do so ive been using radialwalk and radialroadwalk........
i have read at least 3 tuts on radialwalk and roadwalk and i think that i have a pretty good understanding on how they are set up and how they work. BUT i still cant quite get them to do what i tell them to do. So i have a few questions about my walkback procedure:
1. Do I need to put Flag; after each RadialRoadWalk?
2. Why does it only click once and say that the script is finished?
3. Are these problems my fault?
lol dont flame too much i have never tried this before...
heres my script:
SCAR Code:
program Walk;
{.include SRL\SRL.scar}
var waterbmp: Integer;
procedure LoadBmps;
begin
waterbmp := BitmapFromString(28, 13, 'z78DA3377B67073B2301F' +
'2547C95172941C2547C9517294A43B0900A61F0E37');
end;
procedure declarevars;
begin
watercolor:= AutoColorThis(waterbmp,20,MMX1,MMY1,MMX2,MMY2);
end;
procedure WalkBackWillows;
begin
RadialRoadWalk(FindRoadColor,319,328,60,0,0);
Flag;
RadialRoadWalk(FindRoadColor,352,361,60,0,0);
Flag;
RadialRoadWalk(FindRoadColor,349,356,60,0,0);
Flag;
RadialRoadWalk(FindRoadColor,631,637,60,0,0);
Flag;
RadialWalk(2332012,278,256,60,0,0);
Flag;
RadialWalk(watercolor,244,215,60,0,0);
Flag;
end;
begin
ActivateClient;
SetupSRL;
declarevars;
WalkBackWillows;
end.