Here is my sweet, yet simple compass moving script, that doesn't work!
SCAR Code:
program MoveCompass;
{.include SRL\SRL.Scar}
procedure MoveIt;
begin
MoveCompass('n');
end;
begin
SetupSRL;
MoveIt;
end.
"Failed when compiling.
Line 8: [Error] (12651:1): Unknown identifier 'MoveCompass' in script C:\Documents and Settings\Morgan\Desktop\scar\SCRIPTS\MoveCompass.s car"
Whats the problem? 
Also, I am changing all of the MoveMouse and ClickMouse actions on my "AutoFletcher" to Mouse/MMouse. When I change them to Mouse/MMouse, they never seem to work. I will post an example.
I have this.
MoveMouseSmooth(268,215);
Wait(500+random(100));
ClickMouse(268+random(3),215+random(3),false);
And Mouse/MMouse says to do this. This will move the mouse and click in one action.
Mouse(x, y, xrandom, yrandom, button);
x would be 268, y would be 215.
but what I dont get is, whats the xrandom and yrandom for?
I just put 268 in the xrandom and 215 in the yrandom.
After that I put false because I wanted it to right click.
It looked like this
Mouse(268, 215, 268, 215, false);
SCAR Code:
program MoveAndClick;
{.include SRL\SRL.Scar}
procedure MoveClick;
begin
Mouse(268, 215, 268, 215, false);
end;
begin
SetupSRL;
MoveClick;
end.
Then this little window always pops up after I start it and it says something along the lines of, never permit, always permit, permit once, or permit this file. I pick one, then I press OK, then it pops back up! Forever and ever, it never goes away, no matter how many times I click Ok, or Cancel! This only happens when I try to use a Mouse/MMouse action?