Line 32: [Error] (14485:1): Duplicate identifier '' in script C:\Program Files\SCAR 3.11\includes\SRL/SRL/Core/MouseFlag.scar
is what I recieve when my beginning attempts at a script
what should I edit in the srl code to make it work?
Line 32: [Error] (14485:1): Duplicate identifier '' in script C:\Program Files\SCAR 3.11\includes\SRL/SRL/Core/MouseFlag.scar
is what I recieve when my beginning attempts at a script
what should I edit in the srl code to make it work?
http://www.macrosoftinc.com/ ---WTF COPIERS!!!
should this go in the srl bugs? It still is help with scripting right?
http://www.macrosoftinc.com/ ---WTF COPIERS!!!
What script are you using?
My Own Script in progress
SCAR Code:program New;
{.include SRL/SRL.scar}
{.include SRL/SRL/Core/MouseFlag.scar}
{.include SRL/SRL/Core/Symbol.scar}
{.include SRL/SRL/Core/MapWalk.scar}
procedure WalkToBoat;
begin
PerfectNorth;
mouse(585, 52, 10, 12, left: true);
flag;
FindSymbol(x,y, "quest");
mouse(x, y, 10, 10, left: true);
flag;
RadialWalk( 8493, 341, 353, 54, 7, 7);
RadialWalk( 4475981, 278, 294, 65, 4, 3);
end;
begin
setupSRL;
WalkToBoat;
end.
Also, how do you get pics on your sig?
http://www.macrosoftinc.com/ ---WTF COPIERS!!!
Ok, I fixed it up for you.
SCAR Code:program New;
{.include SRL/SRL.scar}
procedure WalkToBoat;
begin
PerfectNorth;
mouse(585, 52, 10, 12, True);
flag;
FindSymbol(x,y, 'quest');
mouse(x, y, 10, 10, True);
flag;
RadialWalk( 8493, 341, 353, 54, 7, 7);
RadialWalk( 4475981, 278, 294, 65, 4, 3);
end;
begin
setupSRL;
WalkToBoat;
end.
You don't need to include anything in the core folder, as it is all called when you include the srl/srl.scar file.
In mouse, left : True, is wrong. When you want to left click, use True, when you want to right click, use False.
The in find symbol, the symbol name needed to be put in single quotation marks ('). Not double. This is always the case for strings etc.
Apart from that good job. ^_^
Hope I helped.
ty soooo much, im gunna plus rep u
ohohoho I just love seeing those words Successfully compiled, they make me feel soo happy inside lol
http://www.macrosoftinc.com/ ---WTF COPIERS!!!
There are currently 1 users browsing this thread. (0 members and 1 guests)