This function is derived from Awalk2, because I was in love with it, but then the new engine killed it. So here is its succesor: Awalk3
SCAR Code:
Procedure AWalk3(Degree, Radius : Integer); //Help from starblaster100
Var
Ax, Ay : Integer;
begin
If (Radius > 57) then
Radius := 57;
Ax := Round ( Radius * Sin (Degree * Pi / 180)) + 648;
Ay := Round (- Radius * Cos (Degree * Pi / 180)) + 83;
Mouse(Ax, Ay, 0, 0, True);
end;
To use just enter in the Degree you want to click at, and the radius of the click(distance from center of MM)