
Originally Posted by
boberman
It should, there hasn't been any significant changes from 22 (which it was changed to support) to 24. Do you have any error messages, how is it failing?
Well I am getting this error
Line 80: [Error] (93:46): Invalid number of parameters in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Misc/Smart.scar
Lines 70 to 81 in Smart.scar
Code:
procedure SmartSetupEx(worldnumber: integer; safe, signed, superdetail: boolean);
var
prefix: string;
begin
prefix := ReadINI('World' + IntToStr(worldnumber), 'Prefix', AppPath + 'includes\SRL\SCSS\worlds.ini');
if(prefix = '')then
begin
writeln('Invalid world number or corrupted world list. Please review your settings');
TerminateScript;
end;
SmartSetup(prefix, safe, signed, superdetail);
end;
This piece is what its highlighting as the problem
Line 80: SmartSetup(prefix, safe, signed, superdetail);
ERROR #2 is as follows:
Line 552: [Error] (6169:73): Type mismatch in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Mapwalk.scar
Line 552:
Code:
SortCircleWise(tpa, cx, cy, StartRadial, False, StartRadial > EndRadial);
Those are my 2 that it is telling me so far.