Ok First of all:
SCAR Code:
Include file C:\Program Files\SCAR 3.15\includes\srl\srl.scar does not exist.
Failed when compiling
Although its really there >.> when I go to that directory.
Second Question:
I'm making an auto-alcher and I can't see if this will work because of the above error. I have these two procedures:
SCAR Code:
Procedure AntiBan;
Begin
case random(12) of
1: Hoverskill('random', false);
2, 3: HoverSkill('magic', false);
4: PickupMouse;
5: Begin
MakeCompass('w');
wait(50+random(124));
Makecompass('s');
wait(50+random(124));
MakeCompass('random');
wait(50+random(124));
MakeCompass('n');
End;
6: Mmouse(0, 0, 800, 800);
End;
End;
SCAR Code:
Procedure RegularAlch;
Begin
If not GameTab(7) Then
Begin
GameTab(7);
case random(2) of
1: Begin
MouseBox(ALCHCORDS);
Wait(25+random(57));
MouseBox(ALCHCORDS);
End;
2: Begin
Mouse(ALCHCORS, 2, 4);
Wait(34+random(99));
Mouse(ALCHCORDS, 0, 0);
End;
End;
End;
So now that you have the knowledge of the above two procedures, tell me one thing. Will this procedure work:
SCAR Code:
Procedure AntiBanAlch;
Begin
While AntiBan do
RegularAlch;
End;