Besides standards, what am I doing wrong here?
SCAR Code:
procedure ReachBank;//Radial + bitmaps
begin
RadialRoadWalk(FindFallyRoadColor, 45, 203, 186, 0, 0);
RadialRoadWalk(FindFallyRoadColor, 45, 203, 186, 0, 0);
RadialRoadWalk(FindFallyRoadColor, 45, 203, 186, 0, 0);
RadialRoadWalk(FindFallyRoadColor, 45, 203, 186, 0, 0);
case random(2) of
0:OpenBankGlass;
1:OpenBankQuiet;
end;
I am fully aware that the 'RadialRoadWalk' would not get you anywhere - I decided that I didn't want to type RadialRoadWalk(FindFallyColor 5-6 times, so I just got one coordinate and left it there.
(I do have setupsrl and the required thingdoes that I know of at the top.)
The error I am returned is 'Invalid number of parameters in script,' I know what it means - I just can't figure out what I'm doing wrong.