uhhhhhh i keep getting this error:
[H]Line 8: [Error] (15340:1) : duplicate identifier ' ' in C:/Program Files\Scar 3.06\Scripts\practice (power miner)[/H]
heres the full script
SCAR Code:
program PowerMiner;
{.include SRL/SRL.scar}
{.include SRL/SRL/skill/Mining.scar}
var
z,c:integer;
Const
OreColor=4211015:5789794;\\this is the line it said i had a error on while i was programing on SCAR 2.06
begin \\this is the line it says i have the error
if(FindColor(z,c,OreColor,0,0,100,100)) then
Begin
MoveMouseSmoothEx(z,c+random(5),20,40,45,25,20);
wait(100+random(10));
ClickMouse(z,c,true);
end;
end.