Been putting it off long enough... HOW ON EARTH DO I SOLVE MY PROBLEM. I have tried re-installing simba, force updating just about everything, etc.
I just can't seem to get things to work. I've tried to follow both Camel's tutorial and The Mayor's tutorial, but I always end up with this:

The debug box reads
Code:
Error: Access violation at line 113
Execution failed.
The following bitmaps were not freed: [Minimap Mask]
File[C:\Simba\Includes\SRL-6/logs/SRL log (05-02-15 at 02.10.03 PM).txt] has not been freed in the script, freeing it now.
and the drawing tab opens up.
I haven't seen other users on the forums have problems like this... so what do?
Simba Code:
program new;
{$Define SMART}
{$I SRL-6/SRL.Simba}
// Scenario 1
procedure HandleDoor()
var
x,y : Integer;
TPA : TPointArray;
ATPA : T2DPointArray;
begin
findColorsSpiralTolerance(x, y, TPA, 3230561, mainScreen.getBounds(), 6, colorSetting(2, 0.12, 0.91));
if (Length(TPA) < 1) then
begin
Exit;
end;
// The door is about that size
ATPA := TPA.toATPA(20, 40);
ATPA.sortFromMidPoint(Mainscreen.playerPoint); // Sort found colors
SmartImage.debugATPA(ATPA);
end;
begin
setupSrl();
HandleDoor();
end.
This was the code I was trying to run.