SCAR Code:
program GrapeSodaAutoAlc;
{.include SRL\SRL.SCAR}
{.include SRL\SRL\skill\magic.scar}
const
hourschoice=2; //This feature will log you out in 2 hours for 20 minutes. (In hours)
intheabove=20; // If you don't want to be logged out for 20 minutes, pick another number(in mins.)
/////////////////////////////
procedure setup;
begin
GameTab(7);
FixMage(true);
end;
procedure castspells;
begin
CastSpell(29);
wait(500);
gametab(1);
UseItem(1);
HoverEvery(10,'magic');
wait(2000);
end;
procedure srlantibanss;
begin
RotateEvery(6);
RandomRClickEvery(2);
LeaveScreenEvery(1);
HoverEvery(4,'magic');
DontBanMe(60);
FindNormalRandomsChoice(Talk, Misc, Lamp, Box, Demon, ScapeRune, Trade, GameTab, Pinball, Frog, Certer, Sandwich, Plant, Black);
LogOutEvery(hourschoice,intheabove);
end;
//main loop//
begin
SetupSrl;
setup;
castspells;
end.
//****Credits*****//
//Thanatos for being ub3r and helping me out!Awesome guy =p//
//Mainly the general SRL community, you guys rox!//
Identifier Expected at line 8
[procedure setup;]
It worked before but I added antiban and stuff and now it won't work... Can anyone help me out, I am trying to learn SRL/SCAR and make some good scripts so I started out with a auto alc (Easy). (I'm new to scripting)