For some reason, I just can't seem to get this area to run correctly. Here is the code:
SCAR Code:
{------------------------------------------------------------------------------
Disguises SCAR. Thanks to ShapeShifter!(with my own little touch)
-------------------------------------------------------------------------------}
procedure DisguiseIt;
begin
if (yourSRLID = '') then //my own little touch =)
begin
case Random(3) of
0:Disguise('My Little Pony Offical Fansite - Mozilla Firefox');
1:Disguise('Bratz.com - The Offical Bratz site! - Mozilla Firefox');
2:Disguise('Im A Leecher! Fanclub - Mozilla Firefox');
end;
end;
if not (yourSRLID = '') then
begin
case Random(7) of
0:Disguise('iTunes');
1:Disguise('Google - Microsoft Internet Explorer');
2:Disguise('Document1 - Microsoft Word');
3:Disguise('Google - Microsoft Internet Explorer');
4:Disguise('Mozilla Firefox Start Page - Mozilla Firefox');
5:Disguise('New Folder');
6:Disguise('Untitled - Notepad');
end;
It gives me the stupid "Identifier expected in script" error, could anyone please help? Thanks.