I will post the problematic part of my script, as well as a few lines before it.
SCAR Code:
{//Chat Greeting\\}
if InChat('Hi') or InChat('Hello') or InChat('Yo')
or InChat('Hey') then
begin
Result := false;
case random(7) of
0: TypeSend('Hi');
1: TypeSend('So boring...');
2: TypeSend('Go away.');
3: TypeSend('Only ' + IntToStr(Players[CurrentPlayer].Integers[1] - Items)
+ ' to go!');
4: TypeSend('Hello');
5: TypeSend('Wuzup');
6: TypeSend('Yo');
end;
end;
{/////////////////\\\\\\\\\\\\\}
{ Do the spell }
{\\\\\\\\\\\\\\\\\/////////////}
procedure DoTehSpell;
begin
repeat
Mouse(829,501,3,2,true);
Wait(1527+Random(320));
until False;
end;
begin
end.
The error is under "///Do the spell\\\", the procedure line
It says
Line 232: [Error] (12875:1): Identifier expected in script
Thanks to anyone who could help, me and R0b0t have been going over this in SRL java chat, and cannot see the problem, thanks to anyone who helps 
Also sorry for having 2 threads of the first page, but this problem has nothing to do with my earlier one.
Sorry again.