right... here we go
SCAR Code:
Failed when compiling
Line 10: [Error] (35:1): Semicolon (';') expected in script C:\Users\Thomas.test-PC\Desktop\SCAR 3.12\includes\SRL/SRL/Core/Globals.scar
you forgot to put a semicolon after the script name
SCAR Code:
Program RicksWillowCutter
should be
SCAR Code:
Program RicksWillowCutter;
next
SCAR Code:
Failed when compiling
Line 24: [Error] (12848:1): Type mismatch in script
you forgot the commas beside the numbers as its a string
SCAR Code:
Players[0].Strings[0] := 0512;
should be
SCAR Code:
Players[0].Strings[0] := '0512';
next
SCAR Code:
Failed when compiling
Line 66: [Error] (12890:71): 'THEN' expected in script
you had put one too many close rounds
SCAR Code:
If FindObjCustom(x, y, ['Wil', 'low'], [1989969, 3760987, 2844763], 7)) then
could be
SCAR Code:
If (FindObjCustom(x, y, ['Wil', 'low'], [1989969, 3760987, 2844763], 7)) then
or it could be
SCAR Code:
If FindObjCustom(x, y, ['Wil', 'low'], [1989969, 3760987, 2844763], 7) then
next
SCAR Code:
Failed when compiling
Line 68: [Error] (12892:5): Unknown identifier 'Loads' in script
you wrote the var wrong
SCAR Code:
If (Loads = Player[CurrentPlayer].Integers[0]) then
should be
SCAR Code:
If (Loadsnum = Player[CurrentPlayer].Integers[0]) then
next
SCAR Code:
Failed when compiling
Line 68: [Error] (12892:13): Unknown identifier 'Player' in script
you wrote player inteead of players
SCAR Code:
If (Loadsnum = Player[CurrentPlayer].Integers[0]) then
should be
SCAR Code:
If (Loadsnum = Players[CurrentPlayer].Integers[0]) then
next
SCAR Code:
Failed when compiling
Line 93: [Error] (12917:1): Identifier expected in script
you needed to put an extra end;
should be
next
SCAR Code:
Failed when compiling
Line 94: [Error] (12918:33): Unknown identifier 'Cutting' in script
you put a space in the variable cuttingtime
SCAR Code:
Until(InvFull) or (TimeFromMark(Cutting Time) > 150000+random(30000));
should be
SCAR Code:
Until(InvFull) or (TimeFromMark(CuttingTime) > 150000+random(30000));
next
SCAR Code:
Failed when compiling
Line 101: [Error] (12925:18): 'THEN' expected in script
once again you put one too many close brackets
should be
next
SCAR Code:
Failed when compiling
Line 113: [Error] (12937:1): Unknown identifier 'OpenBankQuier' in script
you misspelt quiet
should be
[/SCAR]
OpenBankQuiet('db');[/SCAR]
next
SCAR Code:
Failed when compiling
Line 115: [Error] (12939:42): Type mismatch in script
you put integer when inpin requires a string
SCAR Code:
InPin(Players[CurrentPlayer].Integers[0]);
should be
SCAR Code:
InPin(Players[CurrentPlayer].Strings[0]);
next
SCAR Code:
Failed when compiling
Line 156: [Error] (12980:1): Unknown identifier 'AntoBan' in script
you misspelt antiban
should be
next
SCAR Code:
Failed when compiling
Line 159: [Error] (12983:41): Unknown identifier 'Loads' in script
you put loads instead of loadsnum
SCAR Code:
If (Players[CurrentPlayer].Integers[0]= Loads) then
should be
SCAR Code:
If (Players[CurrentPlayer].Integers[0]= Loadsnum) then
there...
i spent about half an hour writing that and im sorry if its not very clear but im tired
~shut