Ok sry about the double post, but I didnt quit and I need help with another error...
SCAR Code:
///////////////////////////////////////////////////////////////////////////
//////////////////////////////Bronze Arrow Buyer///////////////////////////
/////////////////////////////By: 3Garrett3/////////////////////////////////
///////////////////////////////////////////////////////////////////////////
//Have your screen set to V-Bright. //
//Press F12 to stop the script. //
//Have Archery window open (Lowes). //
///////////////////////////////////////////////////////////////////////////
program Arrowbuyer;
{.include SRL/SRL.scar}
var Arrow
begin
repeat
Arrow:= DTMFromString('78DA631467606090634001D922BC0CFF81342' +
'310FF07024605204392010D302291405A1048881250C309241409' +
'A801C9F3105003728B327E350096CF06C0');
if FindDTM(Arrow,x,y,130,84,252,63) Then
Begin
Mouse(x, y, 2, 2, False);
ChooseOption(x, y, '10'); //You can change between 10, 5, and 1
Wait(5000+random(300));
End;
until(IsFKeyDown(12))
end.
And I get an error,,,
Line 13: [Error] (17674:1): colon (':') expected in script C:\Program Files\SCAR 2.03\Scripts\DTMS\my first.scar The part where it thinks it should be is by the first begin.?
Thx for the DTM guide by the way.